I encountered an issue with my template that includes JavaScript. For example:
<script>var i = /{{([a-z]*)}}/gi;</script>
Typically, the template interpreter tries to interpret anything inside double curly braces {{}} as a variable. I am now curious if there is a method to disable this behavior, similar to using
{% autoescape off %}{% endautoescape %}
.