由于我已将 Jekyl 更新到0.12.0
我的网站,因此不再编译。我到处都有这样的代码,遍历帖子并过滤失败的类别
<ul>
{% for post in site.posts reversed %}
{% if post.category[0] == "about" %}
<li>
<a href="{{base_path}}{{post.url}}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
这是我收到的错误消息:
Liquid Exception: undefined method `gsub' for ["about"]:Array in 2012-09-20-about.md
如果我删除Jekyll 0.12.0
,那么一切都会再次运行。
有什么事情发生了剧烈的变化吗?