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

Comment out an include statement inside an HTML file using Jekyll

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

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

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

Jekyll 使用 Liquid templating system。所以任何适用于 Liquid 的东西都适用于 Jekyll。

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

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