I have a variable whose value is html:
c.url = '<a href=""></a>'
When I display this in my mako template, the output is:
<a href=""></a>
What's going on?
Thanks.
Your variable's content is being filtered so that it's safe to present. markupsafe.escape()
is being run on it.