diff options
| author | lonkaars <loek@pipeframe.xyz> | 2023-01-27 15:00:15 +0100 |
|---|---|---|
| committer | lonkaars <loek@pipeframe.xyz> | 2023-01-27 15:08:09 +0100 |
| commit | 7f752ac3f2165e08ed2041a13488db3a8740722c (patch) | |
| tree | 0a34a00f8a77ab63c225927a48a8c39d96714726 /anki-card-template/card.js | |
| parent | 4edaed3e2ea6c7091665c14e583d500652d744c0 (diff) | |
minor indicator css tweaks2.2.1
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 d39e7a0..d110c33 100644 --- a/anki-card-template/card.js +++ b/anki-card-template/card.js @@ -107,7 +107,7 @@ function parseIndicators(nodes) { if (input[i] == "]" && indicator) { indicator = false; if (stamp) out += `<span class="stamp">${stamp}</span>`; - out += `${content}</span>`; + out += `<span class="content">${content}</span></span>`; content = ""; stamp = ""; continue; |