答案 0 :(得分:108)
您还可以使用raw:
{% raw %}
...lots of liquid code goes here and it doesn't get interpreted...
{% endraw %}
答案 1 :(得分:10)
答案 2 :(得分:0)
答案 3 :(得分:0)
我想在格式化围栏代码块时同时使用大括号和尖括号,所以我最终得到了以下模式:
{% capture code %}{% raw %}line 1
line 2
line 3
{% endraw %}{% endcapture %}
<pre><code>{{ code | replace: "<", "<" | replace: ">", ">" }}</code></pre>
答案 4 :(得分:-3)
您可以转义HTML,例如在{{var}}
中可以使用\{\{var\}\}
,这样luquid就不会处理它。