fic: Urlify also ł

This commit is contained in:
nemunaire 2022-01-20 16:02:29 +01:00
parent 2645109839
commit 4b82987bbb

View File

@ -24,6 +24,9 @@ func ToURLid(str string) string {
re_I := regexp.MustCompile("[ÌÍÎÏĪ]")
str = re_I.ReplaceAllLiteralString(str, "I")
re_l := regexp.MustCompile("[ł]")
str = re_l.ReplaceAllLiteralString(str, "l")
re_o := regexp.MustCompile("[òóôöō]")
str = re_o.ReplaceAllLiteralString(str, "o")
re_O := regexp.MustCompile("[ÒÓÔÖŌ]")