I\'m trying to output the following from within a liquid template:
{{ example }}
Obviously, Liquid sees this as a variable named example<
What about using the numeric HTML entities {
and }
for {
and }
respectively - presumably this is to be output as HTML?
EDIT: Forgive me, I'm not too familiar with liquid (so this might be very wrong), but can you assign your {{ example }}
special value to a variable and output that? May be something like:
{% assign special = '{{ example }}' %}
{{ special }}