I am using jinja2 to safely render templates for email messages from a web contact form. The problem is the characters &, <, >, ', and " are converted to HTML-safe sequences. So
That's all folks!
becomes
That's all folks!
I want to remove any HTML tags to prevent XSS without any without any character encoding. Is that possible in jinja2?
Note: the striptags utility also converts characters.