From 4bd5446a4e85872668ec7eeba78cc4448d23f574 Mon Sep 17 00:00:00 2001 From: Brian Jones Date: Thu, 30 Mar 2017 09:58:10 -0400 Subject: [PATCH] Fix raw tag and correct output --- tags/raw.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tags/raw.md b/tags/raw.md index b08a0fe1..49ba6292 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 %} ```