我如何从 Jekyll 中删除时区?
How do i remove timezone from Jekyll?
Jekyll post.date
或 site.date
似乎自动提到了时区,有什么办法可以改变这个吗?或者至少将时区更改为 UTC?
*在Linux环境
使用 Liquid date
filter 设置您喜欢的日期格式:
{{ post.date | date: "%a, %b %d, %y" }}
>
Mon, Oct 10, 16
您可以像这样在 _config.yml
中定义时区:
timezone: UTC
请参阅 https://en.wikipedia.org/wiki/List_of_tz_database_time_zones 了解其他值(TZ 列)
Jekyll post.date
或 site.date
似乎自动提到了时区,有什么办法可以改变这个吗?或者至少将时区更改为 UTC?
*在Linux环境
使用 Liquid date
filter 设置您喜欢的日期格式:
{{ post.date | date: "%a, %b %d, %y" }}
>
Mon, Oct 10, 16
您可以像这样在 _config.yml
中定义时区:
timezone: UTC
请参阅 https://en.wikipedia.org/wiki/List_of_tz_database_time_zones 了解其他值(TZ 列)