summaryrefslogtreecommitdiff
path: root/ext/bg/js/handlebars.js
diff options
context:
space:
mode:
authorDanny <Rapptz@users.noreply.github.com>2019-10-23 07:46:43 -0400
committerGitHub <noreply@github.com>2019-10-23 07:46:43 -0400
commitaeac7bf2a87c10f01eafb85949633fc7ce17260c (patch)
tree7bde5b793dd542662533aab97b2be245f81c4822 /ext/bg/js/handlebars.js
parent7a3315d75d91e37f69cf23faa0e5b189ad548e52 (diff)
Proper spacing for Anki in {furigana-plain}
This should fix #264 Note it does not address broken segmentation, just representation within Anki itself to work properly.
Diffstat (limited to 'ext/bg/js/handlebars.js')
-rw-r--r--ext/bg/js/handlebars.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/handlebars.js b/ext/bg/js/handlebars.js
index 92764a20..fba437da 100644
--- a/ext/bg/js/handlebars.js
+++ b/ext/bg/js/handlebars.js
@@ -49,13 +49,13 @@ function handlebarsFuriganaPlain(options) {
let result = '';
for (const seg of segs) {
if (seg.furigana) {
- result += `${seg.text}[${seg.furigana}]`;
+ result += ` ${seg.text}[${seg.furigana}]`;
} else {
result += seg.text;
}
}
- return result;
+ return result.trimLeft();
}
function handlebarsKanjiLinks(options) {