Browse Source

Fixed #30589 -- Clarified that urlize should be applied only to email addresses without single quotes.

aitoehigie 5 years ago
parent
commit
c2f381ef17
1 changed files with 3 additions and 2 deletions
  1. 3 2
      docs/ref/templates/builtins.txt

+ 3 - 2
docs/ref/templates/builtins.txt

@@ -2432,8 +2432,9 @@ Django's built-in :tfilter:`escape` filter. The default value for
 
 .. note::
 
-    If ``urlize`` is applied to text that already contains HTML markup,
-    things won't work as expected. Apply this filter only to plain text.
+    If ``urlize`` is applied to text that already contains HTML markup, or to
+    email addresses that contain single quotes (``'``), things won't work as
+    expected. Apply this filter only to plain text.
 
 .. templatefilter:: urlizetrunc