Raw

v1.9.1

Raw temporarily disables tag processing. This is useful for generating content
(eg, Mustache, Handlebars) which uses conflicting syntax.

Input

1
2
3
4
{% raw %}
In Handlebars, {{ this }} will be HTML-escaped, but
{{{ that }}} will not.
{% endraw %}

Output

1
In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not.