Jekyllを使用してHTMLファイル内のincludeステートメントをコメントアウトする方法はありますか?
たとえば、一時的にコメントアウトしたいHTMLファイルの1つにこれがあります。標準のHTMLコメントは機能しないようです。
{% include navbar.html %}
{% comment %}
{% include navbar.html %}
{% endcomment %}
ジキルは Liquid templating system を使用します。したがって、Liquidで機能するものはすべて、Jekyllでも機能します。
{% comment %}
this is commented out
{% endcomment %}
https://help.shopify.com/themes/liquid/tags/theme-tags#comment