Skip to content

Instantly share code, notes, and snippets.

@markbao
Created July 22, 2012 08:08
Show Gist options
  • Save markbao/3158873 to your computer and use it in GitHub Desktop.
Save markbao/3158873 to your computer and use it in GitHub Desktop.
Issue with triple-bracket with django verbatim
#### home.html
{% verbatim %}
<script id="temp" type="text/x-handlebars-template">
<div class="journeyLogContent">
{{{ content }}}
</div>
{% endverbatim %}
#### rendered in browser
<script id="temp" type="text/x-handlebars-template">
<div class="journeyLogContent">
{{ { content }}}
</div>
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment