How do you comment out in Liquid?

前端 未结 5 1847
轻奢々
轻奢々 2020-12-29 00:48

What is the correct way to comment out in the Liquid templating language?

5条回答
  •  北海茫月
    2020-12-29 01:29

    In liquid, you use {% comment %} and {% endcomment %} tags:

    {% comment %} This would be commented out {% endcomment %}
    

    You can also use it in block:

    {% comment %}
        This would also be commented out
    {% endcomment %}
    

    If the {% comment %} and {% endcomment %} tags would comment anything, including HTML elements and such:

     {% comment %}
        

    This whole div would be commented out

    {% endcomment %}

提交回复
热议问题