diff options
Diffstat (limited to 'ext/bg')
| -rw-r--r-- | ext/bg/js/handlebars.js | 4 | 
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) {  |