回答:
_posts
。YEAR-MONTH-DAY-title.MARKUP
(拡張子に注意してください。MARKUP
通常は.md
またはです.markdown
)future: true
で_config.yml
(ドキュメント)published: false
前書きにあります。に設定しtrue
ます。:
文字が含まれています。と交換してください:
。3.8.3
(おそらく他の「最近の」リリースでも)。.markdown
、ファイル名に拡張子を追加し忘れているためです。それが原因で私の人生の5分が無駄になったので、私はこれを知っています。
を使用jekyll build --verbose
して、ビルドプロセスを詳細に表示できます。
例の出力:
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.
...
ログから、私は2018-01-14-boot-android-on-charge.md
それが将来の日付を持っているのでjekllyがスキップされているのを発見しました。
考えられる理由の1つdate
は、前付けで指定されたタイムゾーンオフセットが含まれていないことです。この場合、デフォルトではローカルマシンのタイムゾーンではなく、UTCに設定されています。UTCが現在のローカルタイムゾーンであるBSTに「追いつく」まで、これに1時間を費やしました。
これに対する明確な答えは見つかりませんでしたが、前付けの日付はタイムゾーンオフセットを付けてUTCで指定する必要があると思います(省略した場合のデフォルトはゼロです)。
だから、date: 2018-05-03 12:34:27
UTCであるにかかわらず、世界であなたがどこにいるの、とのかかわりなくtimezone
で設定_config.yml
。
したがって、次のように日時を指定するように注意してください。
date: 2018-05-03 12:34:27 +0100
date: 2018-05-03 12:34:27 +01:30
も機能するようです。追加のコロンに注意してください。
私はこれらのルールを表現するために私のブログのためにRspecテストを書きました:
require 'spec_helper'
require 'yaml'
# Documented at https://jekyllrb.com/news/2017/03/02/jekyll-3-4-1-released/
post_regex = %r!^(?:.+/)*(\d{2,4}-\d{1,2}-\d{1,2})-(.*)(\.[^.]+)$!
def date_in_front_matter(date)
return date if date.is_a?(Date)
return date.to_date if date.is_a?(Time)
return Date.parse(date) if date.is_a?(String)
end
describe 'posts' do
Dir.glob("_posts/*md").each do |file|
basename = File.basename(file)
context basename do
front_matter = YAML.load(File.read(file).split(/---/)[1])
it 'filename must match documented post regex' do
expect(basename).to match post_regex
end
it 'date in file name same day as date in front matter' do
date_in_file_name = Date.parse(post_regex.match(basename).captures[0])
expect(date_in_front_matter(front_matter['date'])).to eq date_in_file_name
end
it 'title in front matter should not contain a colon' do
expect(front_matter['title']).to_not match /:/
end
it 'front matter should not have published: false' do
expect(front_matter['published']).to_not be false
end
end
end
end
日付のタイプミスなどで時間を大幅に失っていたので、他の人に役立つかもしれません。
future:true
後:
にスペースを入れずに使用すると、_config,yml
ERR:構成ファイル:(INVALID)になります。future: true
ほとんどが代わりに使用されます。