关于jekyll的诸多问题

category 不能为中文,每个 category 会生成一个文件夹;

对于首页(index.md)中遍历site.posts时间输出问题:

{{ post.date | date_to_string }}

输出一直都是英文,而在Archive页面发现date_to_long_string字样,使用发现还是英文显示,将之替换为date_to_short_string却发现有不只是日期,还有时间和时区;

最后终于知道格式化方式:

{{ post.date | date: "%Y-%m-%d" }}

原文地址:https://www.cnblogs.com/nanqi/p/jekyll.html