vote up 0 vote down star

Typically when you want to mark string output as safe in Jinja2 you do something like this:

{{ output_string|safe() }}

However, what if output_string is always safe? I don't want to repeat myself every time by using the safe filter.

I have a custom filter called "emailize" that preps urls for output in an email. The ampersands always seem to become escaped. Is there a way in my custom filter to mark the output as safe?

flag

1 Answer

vote up 0 vote down check

Use the Markup class:

class jinja2.Markup([string])

Marks a string as being safe for inclusion in HTML/XML output without needing to be escaped.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.