diff options
| author | David Hoffman <dhoffman34@icloud.com> | 2014-10-13 18:15:36 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-10-30 09:08:01 -0400 |
| commit | d9bb7128fe7bc565a2dbbd1e89bb0345711b46f6 (patch) | |
| tree | e094c1cbf0aeb57d754acf33120ee91bb45f30c7 /docs/ref/utils.txt | |
| parent | cb952099f4aeac263501c185441872af06927606 (diff) | |
[1.7.x] Fixed #23558 -- documented slugify limitations
Backport of 03467368db from master
Diffstat (limited to 'docs/ref/utils.txt')
| -rw-r--r-- | docs/ref/utils.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 1b16566d3c..1ecb8eed6b 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -817,9 +817,9 @@ appropriate entities. .. function:: slugify - Converts to lowercase, removes non-word characters (alphanumerics and - underscores) and converts spaces to hyphens. Also strips leading and - trailing whitespace. + Converts to ASCII. Converts spaces to hyphens. Removes characters that + aren't alphanumerics, underscores, or hyphens. Converts to lowercase. Also + strips leading and trailing whitespace. For example:: |
