vote up 0 vote down star

how do I html-escape dangerous unsanitized input in jinja2?

Can I do it inside the template or must it be done in python code?

I have a variable that may contain da<ngero>u&s chars. How do I escape it in jinja2

flag

1 Answer

vote up 5 vote down check

e.g.

{{ user.username|e }}

Pipe it through the |e filter

Jinija: Template Designer Documentation -> Builtin Filters: Escape

link|flag

Your Answer

Get an OpenID
or

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