There is raw tag for this purpose:
<script type="text/x-handlebars">
{% raw %}
{{#view App.MyView}}
<h1>Hello world!</h1>
{{/view}}
{% endraw %}
</script>
Update
As raw
tag is deprecated use verbatim
instead.
There is raw tag for this purpose:
<script type="text/x-handlebars">
{% raw %}
{{#view App.MyView}}
<h1>Hello world!</h1>
{{/view}}
{% endraw %}
</script>
As raw
tag is deprecated use verbatim
instead.