Hexo 踩坑日志
2017年8月9日
1
今天在发布文章的时候发现发不出来,明明在source_posts里有md文件,hexo g 生成后,首页却不显示。
仔细翻阅发布时显示的日志发现一处错误1
2
3ERROR Process failed: _posts/Homestead.md
YAMLException: can not read a block mapping entry;
a multiline key may not be an implicit key at line 4, column 7:
原来在 tags 的冒号后边需要有空格才行,没有空格就会出错。加上空格,发布成功!
2
1 | $ hexo g |
我在文章中找到了 一个用双大括号括着的 asset("css.css")
去掉之后就好了。