We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example german: Ä -> AE; Ö-> OE, Ü -> UE, ä -> ae, ö -> oe, ü -> ue, ß -> ss
The text was updated successfully, but these errors were encountered:
Danish doesn't seem to work, see:
> to_any_case(c("Æ", "Ae"), transliterations = "Latin-ASCII") [1] "ae" "ae" > to_any_case(c("æ", "ae"), transliterations = "Latin-ASCII") [1] "ae" "ae" > to_any_case(c("Ø", "Oe"), transliterations = "Latin-ASCII") [1] "o" "oe" > to_any_case(c("ø", "oe"), transliterations = "Latin-ASCII") [1] "o" "oe" > to_any_case(c("Å", "Aa"), transliterations = "Latin-ASCII") [1] "a" "aa" > to_any_case(c("å", "aa"), transliterations = "Latin-ASCII") [1] "a" "aa"
All together:
Also Need to update the following files
function documentations
Readme
News
Also need to allow users to specify a list of replacements. Done via named transliteration arguments.
need to document the mappings here in a more transparent and structured way.
See discussions:
Sorry, something went wrong.
No branches or pull requests
For example german:
Ä -> AE; Ö-> OE, Ü -> UE,
ä -> ae, ö -> oe, ü -> ue, ß -> ss
The text was updated successfully, but these errors were encountered: