Django urlize
docs say:
The
urlize
filter also takes an optional parameterautoescape
. Ifautoescape
isTrue
, the link text and URLs will be escaped using Django's built-inescape
filter. 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?