hexo-theme-butterfly/layout/includes/third-party/mermaid.pug
2020-07-16 19:30:54 +08:00

16 lines
359 B
Plaintext

script.
if (document.getElementsByClassName('mermaid').length) {
if (window.mermaidJsLoad) mermaid.init()
else {
$.getScript('!{theme.CDN.mermaid}', function () {
window.mermaidJsLoad = true
mermaid.initialize({
theme: '!{theme.mermaid.theme}',
})
!{theme.pjax} && mermaid.init()
})
}
}