2023-04-24 16:18:54 +02:00
|
|
|
import mermaid from "https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs";
|
|
|
|
|
|
|
|
window.addEventListener("load", async () => {
|
2023-04-25 02:32:43 +02:00
|
|
|
const theme = window.matchMedia("(prefers-color-scheme: dark)").matches
|
|
|
|
? "dark" // dark
|
|
|
|
: "default"; // light
|
|
|
|
|
|
|
|
mermaid.initialize({ startOnLoad: false, theme: theme });
|
|
|
|
|
2023-04-24 16:18:54 +02:00
|
|
|
await mermaid.run({
|
|
|
|
querySelector: ".language-mermaid",
|
|
|
|
});
|
|
|
|
});
|