fix mermaid initialization

This commit is contained in:
Jacky Zhao 2023-08-04 22:35:21 -07:00
parent 564be92f17
commit 6a7ee31c7c
3 changed files with 9 additions and 3 deletions

View File

@ -121,7 +121,7 @@ async function popContentFolder(contentFolder) {
}
function gitPull(origin, branch) {
const flags = ["-s", "recursive", "-X", "ours"]
const flags = ["-s", "recursive", "-X", "ours", "--no-edit"]
spawnSync("git", ["pull", ...flags, origin, branch], { stdio: "inherit" })
}
@ -334,7 +334,6 @@ See the [documentation](https://quartz.jzhao.xyz) for how to get started.
sourcefile,
},
write: false,
minify: true,
bundle: true,
platform: "browser",
format: "esm",

View File

@ -414,7 +414,13 @@ export const ObsidianFlavoredMarkdown: QuartzTransformerPlugin<Partial<Options>
js.push({
script: `
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
document.addEventListener('nav', async () => {
const darkMode = document.documentElement.getAttribute('saved-theme') === 'dark'
mermaid.initialize({
securityLevel: 'loose',
theme: darkMode ? 'dark' : 'default'
});
});
`,
loadTime: "afterDOMReady",
moduleType: "module",

View File

@ -310,6 +310,7 @@ pre {
&:has(> code.mermaid) {
border: none;
position: relative;
}
& > code {