-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Framework: toTitleCase butchers German UTF-8 #104
Labels
Comments
This was referenced Sep 23, 2020
This was referenced Sep 12, 2021
This was referenced Jan 18, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Example: https://wordpress.com/tag/fahrrader shows the string as
Fahrr Der
The UTF-8 character ä is not considered as a part of the word, it should be
Fahrräder
.Another example is https://wordpress.com/tag/strase:

A solution would be to use CSS:
text-transform: capitalize;
though this wouldn't work for the page title.The text was updated successfully, but these errors were encountered: