使用Jekyll在HTML文件中注释掉include语句

时间:2015-01-16 01:00:33

标签: comments jekyll

有没有办法使用Jekyll在HTML文件中注释掉include语句?

例如,我在我的一个HTML文件中有这个,我想暂时注释掉。标准HTML评论似乎不起作用。

{% include navbar.html %}           

2 个答案:

答案 0 :(得分:80)

{% comment %}
{% include navbar.html %}
{% endcomment %}

答案 1 :(得分:13)

杰基尔使用Liquid templating system。所以无论什么适用于液体为杰基尔工作。

{% comment %}
this is commented out
{% endcomment %}

https://help.shopify.com/themes/liquid/tags/theme-tags#comment