我已经更新了 jekyll,现在得到了这个错误:
Liquid Exception: Unknown operator forloop in collection.html
这是有问题的代码:
{% for tag in site.content_data.tags %}{{ tag }}{% if not forloop.last %}, {% endif %}{% endfor %}
我将如何解决此错误?
我怀疑你的语法不是有效的,因为我在操作符部分{% if not forloop.last %}
没有看到它。
你试过{% if forloop.last == false %}
吗?
不与 Yi Zeng 相矛盾,但您也可以使用以下方法解决此问题:
{% unless forloop.last %}something{% endunless %}