I\'m trying to output the following from within a liquid template:
{{ example }}
Obviously, Liquid sees this as a variable named example<
example<
You can escape the HTML, for example in a {{var}} you can use \{\{var\}\}, so that way luquid don't process it.
{{var}}
\{\{var\}\}