jekyll _config.yml 已编辑但没有任何改变?

jekyll _config.yml edited but nothing changed?

按照教程进行编辑并推送我的更改。它在存储库中正确显示更改,但在网页上没有任何更改。

https://github.com/StephanBKetterer/StephanBKetterer.github.io

您的 _config.yml 中存在一些错误:

第一个破坏了您的最后两个构建,如所见 here 并且肯定在您的配置面板中。

author:
  ...
  github           :"StephanBKetterer"

必须是:

author:
  ...
  github           : "StephanBKetterer"

冒号后总是一个 space。

第二个发出警告:

Defaults: An invalid front-matter default set was found: blah blah

defaults:
...
  #_pages
  - scope:
      path: ""
      type: pages
      values:
        layout: single
        author_profile: true

必须这样缩进:

defaults:
...
  #_pages
  - scope:
      path: ""
      type: pages
    values:
      layout: single
      author_profile: true