raw
Temporarily disables tag processing. This is useful for generating certain content that uses conflicting syntax, such as Vue
;
Example:
liquid
{% raw %}
This should be handed off to vue templating engine {{ some_variable }}
{% endraw %}
1
2
3
2
3
Output
html
This should be handed off to vue templating engine {{ some_variable }}
1