hexo/themes/blank/scripts/mermaid.js

16 lines
285 B
JavaScript
Raw Normal View History

2024-05-09 10:56:56 +08:00
/**
* 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 })