diff options
author | Alex Yatskov <alex@foosoft.net> | 2017-01-21 19:30:01 -0800 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2017-01-21 19:30:01 -0800 |
commit | 985c5df328ccff8492576d005a00fae828f56bab (patch) | |
tree | 79e14fff612e75c7f7ef6863e4843561fa5b6d45 /ext/bg/js/yomichan.js | |
parent | 03e1a03634ed5bccea3bddb3f6487effc7eb17db (diff) |
WIP
Diffstat (limited to 'ext/bg/js/yomichan.js')
-rw-r--r-- | ext/bg/js/yomichan.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/ext/bg/js/yomichan.js b/ext/bg/js/yomichan.js index 1f337680..820826f7 100644 --- a/ext/bg/js/yomichan.js +++ b/ext/bg/js/yomichan.js @@ -142,9 +142,15 @@ class Yomichan { } for (const name in fields) { - note.fields[name] = formatField(fields[name], definition, mode); + note.fields[name] = formatField( + fields[name], + definition, + mode, + this.options.anki.htmlCards + ); } + console.log(note); return note; } |