fix mermaid initialization
This commit is contained in:
parent
21a7ec2307
commit
9e76b257d4
@ -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",
|
||||
|
@ -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",
|
||||
|
@ -310,6 +310,7 @@ pre {
|
||||
|
||||
&:has(> code.mermaid) {
|
||||
border: none;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
& > code {
|
||||
|
Loading…
Reference in New Issue
Block a user