Open GoogleCodeExporter opened 9 years ago
in some cases, write() seems to have problems with the template rendering -
I've used unicode() sometimes with partial success:
EG
Change:
self.response.out.write(htmlstring)
to
self.response.out.write(unicode(htmlstring))
And see if that works out.
Original comment by RichKH...@gmail.com
on 15 Jan 2015 at 11:16
Also of note: I had to use autoescape to ensure that the contents of the
CCCwiki weren't escaped within the view template.
{% autoescape off %}
{{ page.wikified_content }}
{% endautoescape %}
Original comment by RichKH...@gmail.com
on 17 Jan 2015 at 5:50
Original issue reported on code.google.com by
tiagofmo...@gmail.com
on 23 May 2013 at 12:32