mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2026-04-16 17:40:55 +08:00
18 lines
363 B
JavaScript
18 lines
363 B
JavaScript
/**
|
|
* Butterfly
|
|
* mermaid
|
|
* https://github.com/mermaid-js/mermaid
|
|
*/
|
|
|
|
'use strict'
|
|
|
|
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 })
|