diff --git a/browser/components/markdown.styl b/browser/components/markdown.styl index ab6c4bc7..cb3449ec 100644 --- a/browser/components/markdown.styl +++ b/browser/components/markdown.styl @@ -77,6 +77,10 @@ body li label.taskListItem margin-left -2em + &.checked + font-style italic + text-decoration line-through + opacity 0.5 div.math-rendered text-align center .math-failed diff --git a/browser/lib/markdown.js b/browser/lib/markdown.js index fca0259d..164dd89e 100644 --- a/browser/lib/markdown.js +++ b/browser/lib/markdown.js @@ -109,7 +109,7 @@ md.block.ruler.at('paragraph', function (state, startLine/*, endLine */) { if (state.parentType === 'list') { const match = content.match(/^\[( |x)\] ?(.+)/i) if (match) { - content = `` + content = `` } }