diff --git a/src/classes.js b/src/classes.js index 883d1d8d..79372c51 100644 --- a/src/classes.js +++ b/src/classes.js @@ -352,6 +352,10 @@ export class Pronoun { } getPronunciation(morpheme, counter = 0) { + if (morpheme.startsWith("'")) { + morpheme = morpheme.substring(1); + } + if (!this.pronunciations[morpheme]) { return null; }