mirror of https://github.com/jkjoy/sunpeiwen.git
14 lines
403 B
Plaintext
14 lines
403 B
Plaintext
<script>
|
|
Fluid.utils.createScript('<%= url_join(theme.static_prefix.mermaid, 'mermaid.min.js') %>', function() {
|
|
mermaid.initialize(<%- JSON.stringify(theme.post.mermaid.options || {}) %>);
|
|
|
|
Fluid.utils.listenDOMLoaded(function() {
|
|
Fluid.events.registerRefreshCallback(function() {
|
|
if ('mermaid' in window) {
|
|
mermaid.init();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|