diff options
| author | Sjbrgsn <chsnot@gmail.com> | 2019-12-21 11:45:54 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-12-30 20:47:22 +0100 |
| commit | b2bd08bb7a912a1504f5fb5018f5317e6b5423cd (patch) | |
| tree | c481e9b848b285755f872554ed0b828e5256aee9 /docs/ref | |
| parent | cf5d4701dc12ad69d51042b0d7e81e4a54de4bd7 (diff) | |
Fixed #30892 -- Fixed slugify() and admin's URLify.js for "İ".
Thanks Luis Nell for the implementation idea and very detailed report.
Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/utils.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index d8af302c0e..4dafc9cee5 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -830,10 +830,10 @@ appropriate entities. Converts a string to a URL slug by: #. Converting to ASCII if ``allow_unicode`` is ``False`` (the default). + #. Converting to lowercase. #. Removing characters that aren't alphanumerics, underscores, hyphens, or whitespace. #. Removing leading and trailing whitespace. - #. Converting to lowercase. #. Replacing any whitespace or repeated dashes with single dashes. For example:: |
