diff --git a/tags/raw.md b/tags/raw.md index b08a0fe..49ba629 100644 --- a/tags/raw.md +++ b/tags/raw.md @@ -7,16 +7,16 @@ Raw temporarily disables tag processing. This is useful for generating content (eg, Mustache, Handlebars) which uses conflicting syntax.
Input
-```text -{% raw %} -{% raw %} - In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not. -{% endraw % } -{% endraw %} -``` +
+{% raw %}
+{% raw %}
+ In Handlebars, {{ this }} will be HTML-escaped, but
+ {{{ that }}} will not.
+{% endraw %}
+{% endraw %}
+
Output
-```liquid -Any contents that you put between {% comment %} and {% endcomment %} tags -is turned into a comment. +```text +{% raw %}In Handlebars, {{ this }} will be HTML-escaped, but {{{ that }}} will not.{% endraw %} ```