raw
Outputs any Liquid code as text instead of rendering it.
Syntax
{% raw %}
expression
{% endraw %}
expression
The expression to be output without being rendered.
{% raw %}
{{ 2 | plus: 2 }} equals 4.
{% endraw %}
{% raw %}
{{ 2 | plus: 2 }} equals 4.
{% endraw %}
Output
{{ 2 | plus: 2 }} equals 4.
Was this page helpful?