我更新了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 %}
不是有效的语法,因为在operators section中看不到它。
您尝试过{% if forloop.last == false %}
吗?
关于for-loop - Jekyll-液体异常(exception): Unknown operator forloop,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17681776/