Jekyll post not generated

前端 未结 9 1114
星月不相逢
星月不相逢 2020-12-04 14:53

I am trying to add a new post to my Jekyll site, but I cannot see it on the generated pages when I run jekyll serve.

What are some common reasons for a

9条回答
  •  失恋的感觉
    2020-12-04 15:39

    You can use jekyll build --verbose to view build process in detail.

    Exmaple output:

      Logging at level: debug
    Configuration file: /home/fangxing/fffx.github.io/_config.yml
      Logging at level: debug
             Requiring: jekyll-archives
             Requiring: jekyll-livereload
             Requiring: kramdown
                Source: /home/fangxing/fffx.github.io
           Destination: /home/fangxing/fffx.github.io/_site
     Incremental build: enabled
          Generating... 
           EntryFilter: excluded /Gemfile
           EntryFilter: excluded /Gemfile.lock
               Reading: _posts/2018-01-14-new-post.md
               Reading: _posts/2014-01-01-example-content.md
               Reading: _posts/2014-01-02-introducing-lanyon.md
               Reading: _posts/2017-11-21-welcome-to-jekyll.markdown
               Reading: _posts/2018-01-14-boot-android-on-charge.md
               Reading: _posts/2013-12-31-whats-jekyll.md
              Skipping: _posts/2018-01-14-boot-android-on-charge.md has a future date
            Generating: Jekyll::Archives::Archives finished in 0.000122873 seconds.
            Generating: JekyllFeed::Generator finished in 0.000468846 seconds.
            ...
    

    from the log I found jeklly skipped 2018-01-14-boot-android-on-charge.md because it has a future date.

提交回复
热议问题