From b2bd08bb7a912a1504f5fb5018f5317e6b5423cd Mon Sep 17 00:00:00 2001 From: Sjbrgsn Date: Sat, 21 Dec 2019 11:45:54 +0100 Subject: Fixed #30892 -- Fixed slugify() and admin's URLify.js for "İ". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks Luis Nell for the implementation idea and very detailed report. Co-Authored-By: Mariusz Felisiak --- docs/ref/utils.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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:: -- cgit v1.3