Outputting Literal curly braces in Liquid templates

后端 未结 4 594
南旧
南旧 2021-02-05 02:40

I\'m trying to output the following from within a liquid template:

{{ example }}

Obviously, Liquid sees this as a variable named example<

4条回答
  •  感情败类
    2021-02-05 02:59

    This is the only thing that worked from me. Lifted from here:

    {{ "{{ this " }}}}
    

    I needed this because I wanted to reference the site global variable from inside a mustache template.

提交回复
热议问题