http://qinkun1234.github.io/git-manual/
fork 了minimal-mistakes 3.0
按照 manual https://jekyllrb.com/docs/posts/ 在 _posts 目录下新加了 2016-05-09-git-manual.md 文件后 push 。 预览效果如上怎么跟纯文本一样而不是预期的 markdown 解析格式呢。
1
junbaor 2016-05-10 09:48:05 +08:00
加这个头了吗?
``` --- layout: post title: Git manual --- ``` |
2
Andor_Chen 2016-05-10 12:50:43 +08:00
原因是 post 这个 layout 不存在。
我看你的提交历史,发现你创建了 _layouts/post.html ,然后又把它删了。你可能发现问题所在了,但是 post.html 里面的内容写的不对。 |
3
nuc093 OP |