web-dev-qa-db-ja.com

Jekyllを使用してHTMLファイル内のincludeステートメントをコメント化する

Jekyllを使用してHTMLファイル内のincludeステートメントをコメントアウトする方法はありますか?

たとえば、一時的にコメントアウトしたいHTMLファイルの1つにこれがあります。標準のHTMLコメントは機能しないようです。

{% include navbar.html %}           
46
Amit
{% comment %}
{% include navbar.html %}
{% endcomment %}
83
David Jacquel

ジキルは Liquid templating system を使用します。したがって、Liquidで機能するものはすべて、Jekyllでも機能します。

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

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

13
mccambridge