Possible Duplicate:
django: rendering a template variable as html
I am developing a django site and I have a string variable which has html tags in it. I need that string to be read as html code on my template.
For instance if I have a string variable
description = "<ul><li>abc</li><li>def</li><li>ghi</li></ul>
"
When I call this string variable in my template, I would like it to be displayed as
- abc
- def
- ghi
Currently it shows the string as it is.
I would really appreciate any help with this.