Платформа ЦРНП "Мирокод" для разработки проектов
https://git.mirocod.ru
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
662 B
23 lines
662 B
import {random} from '../utils.js'; |
|
|
|
export async function renderMermaid(els) { |
|
if (!els || !els.length) return; |
|
|
|
const {mermaidAPI} = await import(/* webpackChunkName: "mermaid" */'mermaid'); |
|
|
|
mermaidAPI.initialize({ |
|
startOnLoad: false, |
|
theme: 'neutral', |
|
securityLevel: 'strict', |
|
}); |
|
|
|
for (const el of els) { |
|
mermaidAPI.render(`mermaid-${random(12)}`, el.textContent, (svg, bindFunctions) => { |
|
const div = document.createElement('div'); |
|
div.classList.add('mermaid-chart'); |
|
div.innerHTML = svg; |
|
if (typeof bindFunctions === 'function') bindFunctions(div); |
|
el.closest('pre').replaceWith(div); |
|
}); |
|
} |
|
}
|
|
|