fix: exclude non-class attributes from markdown rendering in editor preview (#1251)

This commit is contained in:
Hinaloe 2019-11-23 00:52:19 +09:00 committed by Nicolas Giard
parent 46630e1638
commit 115472a3fc

View File

@ -233,7 +233,9 @@ const md = new MarkdownIt({
return `<pre class="line-numbers"><code class="language-${lang}">${str}</code></pre>`
}
})
.use(mdAttrs)
.use(mdAttrs, {
allowedAttributes: ['id', 'class', 'target']
})
.use(mdEmoji)
.use(mdTaskLists, {label: true, labelAfter: true})
.use(mdExpandTabs)