Comment out an include statement inside an HTML file using Jekyll
Is there a way to comment out an include statement inside an HTML file using Jekyll?
For example I have this inside one of my HTML files that I'd like to temporarily comment out. Standard HTML comment doesn't seem to work.
{% include navbar.html %}
Solution 1:
{% comment %}
{% include navbar.html %}
{% endcomment %}
Solution 2:
Jekyll uses the Liquid templating system. So whatever works for Liquid works for Jekyll.
{% comment %}
this is commented out
{% endcomment %}
https://help.shopify.com/themes/liquid/tags/theme-tags#comment