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
git-apa
In the git -> git-apa mapping, ? and ' are both letters, e.g., as evidenced by these first two rules in mappings\langs\git\RAPA_Deterministic.csv:
?
'
mappings\langs\git\RAPA_Deterministic.csv
\?{1},ʔ{1} '{1}l{2},l{2}\u02C0{1}
but the tokenizer does not recognize either character as a letter:
$ g2p convert "a'?a" git git-apa æ'ʔ $ g2p convert --tok "a'?a" git git-apa æ'?æ
When adding the --debugger option, we can see that g2p is tokenizing a'?a into a and a separated by non-word characters '?.
--debugger
a'?a
a
'?
Issue discovered while confirming that ReadAlongs/Studio#18 was indeed fixed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the git -> git-apa mapping,
?
and'
are both letters, e.g., as evidenced by these first two rules inmappings\langs\git\RAPA_Deterministic.csv
:but the tokenizer does not recognize either character as a letter:
When adding the
--debugger
option, we can see that g2p is tokenizinga'?a
intoa
anda
separated by non-word characters'?
.Issue discovered while confirming that ReadAlongs/Studio#18 was indeed fixed.
The text was updated successfully, but these errors were encountered: