I have a lot of variables that has html in them. For example the value of a variable called {{object.name}} is the following:
Play this <a href="#">hot</a> game and see how <b>fun</b> it is!
Is there a filter that can be applied on the variable that will give me just the text:
Play this hot game and see how fun it is!
Without the text being linked or the html being replaced by htmlentities. Just the text?
striptags filter removes all html
{{object.name|striptags}}