This commit is contained in:
Timothy Jaeryang Baek
2026-06-29 01:22:14 -05:00
parent 89629b8f03
commit ec8e20af35
+2 -1
View File
@@ -1927,7 +1927,8 @@ export const initMermaid = async () => {
mermaid.initialize({
startOnLoad: false, // Should be false when using render API
theme: document.documentElement.classList.contains('dark') ? 'dark' : 'default',
securityLevel: 'loose'
securityLevel: 'loose',
htmlLabels: false
});
return mermaid;
};