I\'m trying to insert jQuery templates into Jinja2 templates. Alas they both (in the default setup) use the mustaches {{ & }} to indicate expressio
{{
}}
You can use the {% raw %}{% endraw %} construct to ease your escaping woes (straight from the Jinja2 docs).
{% raw %}{% endraw %}
Example: