Search code examples
commentsjekyll

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

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