Re-render KQVI mermaid chart at higher resolution with source link

- Extract original mermaid code from git history (faa30b9)
- Create kings-quest-vi-chart.mmd with raw mermaid source
- Render preview at 3000px wide (247KB PNG)
- Render full-size at 6000px wide (657KB PNG)
- Add link to raw mermaid source file in markdown
- Also fix: set mermaid startOnLoad: false to prevent duplicate renders
This commit is contained in:
2026-03-19 20:43:29 -07:00
parent 45910128f6
commit 9242bc446a
6 changed files with 674 additions and 18 deletions

View File

@@ -17,7 +17,7 @@
}
const theme = lastThemeWasLight ? 'default' : 'dark';
mermaid.initialize({ startOnLoad: true, theme });
mermaid.initialize({ startOnLoad: false, theme });
// Simplest way to make mermaid re-render the diagrams in the new theme is via refreshing the page