fix pitch accent color for words with punctuation (#20)

and also for nouns that end in な
This commit is contained in:
pangdaxing23 2024-02-08 03:09:14 +07:00 committed by GitHub
parent e0a80a0fe3
commit 977b5a28d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,6 +31,7 @@ Fri Jul 7 06:33:50 PM UTC 2023
</div> <!-- /wrap -->
<div style="display:none;">
<div id="vocab_kanji">{{VocabKanji}}</div>
<div id="pitchnum_hidden">{{VocabPitchNum}}</div>
<div id="kanaword_hidden">{{kana:VocabFurigana}}</div>
</div>
@ -85,8 +86,21 @@ Fri Jul 7 06:33:50 PM UTC 2023
if (vocab_kana === null) {
return false;
}
// small っ is one mora; ゃゅょ are parts of single mora
const n_moras = vocab_kana.innerHTML.replace(/[ャュョゃゅょ]/g, "").length;
let moras = vocab_kana.innerHTML
.replace(/[(].*[)]/, "") // remove (お), (する), <する>, <な>, etc
.replace(/[ャュョゃゅょ]/g, "") // small っ is one mora; ゃゅょ are parts of single mora
.trim();
let n_moras;
// first determine if な is part of pronunciation or な-adjective (e.g. 女)
const vocab_kanji = document.getElementById("vocab_kanji").innerHTML.trim();
if (/な$/.test(vocab_kanji)) {
// な-adjectives don't change pitch
n_moras = moras.replace(/な$/, "").length;
} else {
n_moras = moras.length;
}
if (n_moras == pitch_num) {
return true;
} else {