In my Django Templates, I want to pass in a string as follows:
trademard = "MyCompany ™"
and it will show up as the correct HTML entity of TM
However, when it is passed in, ™ is turned into ™
How can I get my desired results w/o surrounding the html block w/ {% verbatim %}
Thanks
{{trademard|safe}}
?? – Rage