hexo-theme-butterfly
Version:
A Simple and Card UI Design theme for Hexo
18 lines (13 loc) • 363 B
JavaScript
/**
* Butterfly
* mermaid
* https://github.com/mermaid-js/mermaid
*/
const { escapeHTML } = require('hexo-util')
const mermaid = (args, content) => {
return `<div class="mermaid-wrap"><pre class="mermaid-src" hidden>
${escapeHTML(content)}
</pre></div>`
}
hexo.extend.tag.register('mermaid', mermaid, { ends: true })