diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-01-29 22:32:44 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-01-29 22:32:44 +0100 |
commit | f39b1fcbe332b3f7c68db15801a97590621c583d (patch) | |
tree | 771e59e59e002631fbc1a36733237ba5e1332829 /yomichan-user | |
parent | 97b6e373ba2f654dadd9c299c09098879de964fc (diff) |
forgot semicolons3.1.0
Diffstat (limited to 'yomichan-user')
-rw-r--r-- | yomichan-user/conf.d/word-export.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yomichan-user/conf.d/word-export.js b/yomichan-user/conf.d/word-export.js index fce1b48..cbaece4 100644 --- a/yomichan-user/conf.d/word-export.js +++ b/yomichan-user/conf.d/word-export.js @@ -16,8 +16,8 @@ function exportWord() { return out; } var kanji = addWord(false); - var reading = addWord(true) - var result = `${kanji}` + var reading = addWord(true); + var result = `${kanji}`; if (hasKanji) result += `\u3010${reading}\u3011`; else result += " "; @@ -25,7 +25,7 @@ function exportWord() { var pitchAccent = ""; for (var tag of entry.getElementsByClassName("pronunciation-downstep-notation-number")) { - pitchAccent = tag.innerText.trim() + pitchAccent = tag.innerText.trim(); break; } if (pitchAccent) tags.push(`[${pitchAccent}]`); |