vote up 0 vote down star

So, I'm passing an object with a "content" property that contains html.

<div>{{ myobject.content }}</div>

I want to be able to output the content so that the characters are rendered as the html characters.

The contents of "conent" might be: <p>Hello</p>

I want this to be sent to the browser as: &lt;p&gt;Hello&lt;/p&gt;

Is there something I can put in my template to do this automatically?

flag

2 Answers

vote up 4 vote down check

Yes, {{ myobject.content | escape }} should help (assuming you mean Django templates -- there's no specific "App Engine" templating system, GAE apps often use the Django templating system); you may need to repeat the | escape part if you want two levels of escaping (as appears to be the case in some but not all of the example you supply).

link|flag
My small app is using Google's webapp framework. But I think that framework does default to using the Django template system. – Jim May 20 at 17:36
You're correct, it does. – Nick Johnson May 21 at 7:55
vote up 2 vote down

This is Django's django.utils.html.escape function:

def escape(html):
    """Returns the given HTML with ampersands, quotes and carets encoded."""
    return mark_safe(force_unicode(html).replace('&', '&amp;').replace('<', '&l
t;').replace('>', '&gt;').replace('"', '&quot;').replace("'", '&#39;'))

Also, see here.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.