mirror of https://github.com/jkjoy/sunpeiwen.git
16 lines
285 B
JavaScript
16 lines
285 B
JavaScript
|
/**
|
||
|
* transplant from hexo-theme-butterfly
|
||
|
* mermaid
|
||
|
* https://github.com/mermaid-js/mermaid
|
||
|
*/
|
||
|
|
||
|
'use strict'
|
||
|
|
||
|
function mermaid (args, content) {
|
||
|
return `<div class="mermaid">
|
||
|
${content}
|
||
|
</div>`
|
||
|
}
|
||
|
|
||
|
hexo.extend.tag.register('mermaid', mermaid, { ends: true })
|