> I must still be doing something wrong..
>
> If my stored string is  ->   <b>hello</b>
>
> If I include {{item.text}} in my template I get   ->    <b>hello</b>
>
> and if I include {{item.text|escape}} I get ->    &lt;b&gt;hello&lt;/
> b&gt;
>
> but I am trying to achieve a bold "hello"

Are you using Django 1.0?

It that case you should un-escape with the "safe" filter:

    {{ item.text|safe }}

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to