mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
16 lines
359 B
Plaintext
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()
|
|
})
|
|
}
|
|
}
|
|
|
|
|