Django urlize docs say:
The
urlizefilter also takes an optional parameterautoescape. IfautoescapeisTrue, the link text and URLs will be escaped using Django’s built-inescapefilter. The default value for autoescape isTrue.
I’d like to use this parameter, but the documentation says nothing about how to actually pass a keyword argument to a template filter. Is it possible, and if so, how do I do that?
Apparently
urlizegets that keyword argument from current autoescape settings, so the way to go seems like(if you still want to escape the value)