You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make use of String.normalize() for a better mapping from Unicode to ASCII characters, once it is available in Firefox for Android (see theseissues).
Therefor, start micro.util.slugify() with str.normalize("NFKD")... and adjust the documentation to All characters are mapped to lower case, approximate ASCII characters (e.g. with diacritics removed) and ...
The text was updated successfully, but these errors were encountered:
Make use of
String.normalize()
for a better mapping from Unicode to ASCII characters, once it is available in Firefox for Android (see these issues).Therefor, start
micro.util.slugify()
withstr.normalize("NFKD")...
and adjust the documentation toAll characters are mapped to lower case, approximate ASCII characters (e.g. with diacritics removed) and ...
The text was updated successfully, but these errors were encountered: