Jekyll 忽略降价标题
Jekyll Ignoring markdown headings
我有以下 jekyll 站点的 markdown 文件:
https://github.com/eQualityTime/TheOpenVoiceFactory/blob/gh-pages/guides.md,在 github.
中正确解析
但是,当我使用 jekyll 进程解析时出了点问题,在我构建它们之后 headers 看起来像这样(完整站点是 this one):
这是什么原因造成的?
在_includes/singlepage.html中,你调用{{ page.content }}
,就是未处理的内容。将其替换为 {{ content }}
.
我有以下 jekyll 站点的 markdown 文件:
https://github.com/eQualityTime/TheOpenVoiceFactory/blob/gh-pages/guides.md,在 github.
中正确解析但是,当我使用 jekyll 进程解析时出了点问题,在我构建它们之后 headers 看起来像这样(完整站点是 this one):
这是什么原因造成的?
在_includes/singlepage.html中,你调用{{ page.content }}
,就是未处理的内容。将其替换为 {{ content }}
.