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
Basically what the title says. It doesn't recognize vowels with a circumflex (e.g. "û") as vowels.
Example:
Udûn is syllabified as UDÛN, even though it's clearly 2 syllables.
Udûn
UDÛN
This can easily be fixed by adding âêîôûŷ to the list of vowels in is_vowel(), I'll probably just make a PR with this change if I get around to it.
âêîôûŷ
is_vowel()
With that fix in place, Udûn is syllabified correctly as U.dûn
U.dûn
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Basically what the title says. It doesn't recognize vowels with a circumflex (e.g. "û") as vowels.
Example:
Udûn
is syllabified asUDÛN
, even though it's clearly 2 syllables.This can easily be fixed by adding
âêîôûŷ
to the list of vowels inis_vowel()
, I'll probably just make a PR with this change if I get around to it.With that fix in place,
Udûn
is syllabified correctly asU.dûn
The text was updated successfully, but these errors were encountered: