diff options
author | lonkaars <loek@pipeframe.xyz> | 2023-02-01 15:14:22 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2023-02-01 15:14:22 +0100 |
commit | 6e6c93e4eed7ba9debcb84ad2f309f73bcd6cc1f (patch) | |
tree | 259809cfa5b1feceb6434f7a866b4f5c282b5d13 /anki-card-template/card.js | |
parent | 7d0f98881290363d56a617183145b7342d41185e (diff) |
final multiple reading support + note position aligned
Diffstat (limited to 'anki-card-template/card.js')
-rw-r--r-- | anki-card-template/card.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/anki-card-template/card.js b/anki-card-template/card.js index 5e10a6c..42a982e 100644 --- a/anki-card-template/card.js +++ b/anki-card-template/card.js @@ -189,7 +189,7 @@ function parseReading(nodes) { mode = "reading"; for(let i = 0; i < writings.length; i++) { if (i == 1) out += `<span class="extra-writings">`; - if (i > 0) out += `<span class="writing-separator">\u3001</span>`; + if (i > 0) out += `<span class="writing-separator"><span class="inner">\u3001</span></span>`; var classes = ["writing"]; if (i == 0) classes.push("first") out += `<span class="${classes.join(' ')}"><span class="inner">${writings[i].trim()}</span></span>`; |