urlize and urlizetrunc template filter docs need expansion
I was looking at the source code for the urlize filter today and realized the following:
- The docstring for
django.utils.html.urlize has much better documentation than the reference docs do.
- The
autoescape keyword argument to both the urlize and urlizetrunc template filters is not documented.
- The
nofollow argument to django.utils.html.urlize is always passed as True by django.template.defaultfilters.urlize and django.template.defaultfilters.urlizetrunc. While this is a good default, it definitely needs to be documented.
All of the above needs to be incorporated into the docs for those two filters, and they need both more and better examples.
(In [15086]) Fixed #14912 -- Expanded documentation for the urlize template filter. Thanks to adamv for the draft patch.