Created
July 22, 2012 08:08
-
-
Save markbao/3158873 to your computer and use it in GitHub Desktop.
Issue with triple-bracket with django verbatim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### 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