I\'m using Tornado Templates and one of my fields is a string that has HTML tags quoted in it, e.g.
Solar power
When I render it into the temp
{% raw foo %}, in Tornado 2.0+.
{% raw foo %}
If you do that with a lot of expressions in a template, you can add the {% autoescape None %} directive to the beginning of the template, after which {{ foo }} will not be escaped.
{% autoescape None %}
{{ foo }}