This sounds very easy, however I couldn't find it anywhere in the docs. How can I write {% this %} in a liquid template, without it being processed by the engine?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

For future searchers, there is a way to escape without plugins, use the code below:

{{ "{% this " }}%}

and for tags, to escape {{ this }} use:

{{ "{{ this " }}}}

There is also a jekyll plugin for this which makes it a whole lot easier: https://gist.github.com/1020852

Raw tag for jekyll. Keeps liquid from parsing text betweeen {% raw %} and {% endraw %}

Reference

link|improve this answer
Great, thanks for the reference. For some reason I wasn't able tno find this in the liquid docs. – Attila O. May 4 '11 at 11:57
feedback

It turns out there's no escape. There is, check Khaja Minhajuddin's answer.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.