From aeac7bf2a87c10f01eafb85949633fc7ce17260c Mon Sep 17 00:00:00 2001 From: Danny Date: Wed, 23 Oct 2019 07:46:43 -0400 Subject: 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. --- ext/bg/js/handlebars.js | 4 ++-- 1 file 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) { -- cgit v1.2.3