diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt
index da8cac8..eec43bc 100644
a
|
b
|
If ``value`` is ``"http://www.example.org/"``, the output will be
|
2073 | 2073 | urlize |
2074 | 2074 | ~~~~~~ |
2075 | 2075 | |
2076 | | Converts URLs in plain text into clickable links. |
| 2076 | Converts any URLs in text into clickable links. |
| 2077 | |
| 2078 | Works on ``http://``, ``https://``, ``www.`` links and links ending in |
| 2079 | ``.org``, ``.net`` or ``.com``. Links can have trailing punctuation (periods, |
| 2080 | commas, close-parens) and leading punctuation (opening parens) and it'll still |
| 2081 | do the right thing. |
| 2082 | |
| 2083 | URLs in link text will get a ``rel="nofollow"`` attribute. |
2077 | 2084 | |
2078 | 2085 | Note that if ``urlize`` is applied to text that already contains HTML markup, |
2079 | 2086 | things won't work as expected. Apply this filter only to *plain* text. |
… |
… |
For example::
|
2084 | 2091 | |
2085 | 2092 | If ``value`` is ``"Check out www.djangoproject.com"``, the output will be |
2086 | 2093 | ``"Check out <a |
2087 | | href="http://www.djangoproject.com">www.djangoproject.com</a>"``. |
| 2094 | href="http://www.djangoproject.com" rel="nofollow">www.djangoproject.com</a>"``. |
| 2095 | |
| 2096 | ``urlize`` takes an optional parameter ``autoescape``. |
| 2097 | |
| 2098 | If ``autoescape`` is ``True``, the link text and URLs will get autoescaped. |
2088 | 2099 | |
2089 | 2100 | .. templatefilter:: urlizetrunc |
2090 | 2101 | |