9 lines
241 B
JavaScript
Raw Normal View History

2018-09-16 00:35:03 -04:00
module.exports = {
init($, config) {
2020-03-29 20:54:39 -04:00
$('pre.prismjs > code.language-mermaid').each((i, elm) => {
const mermaidContent = $(elm).html()
$(elm).parent().replaceWith(`<div class="mermaid">${mermaidContent}</div>`)
})
2018-09-16 00:35:03 -04:00
}
}