From ec8e20af35d708c4d62471868bfaa93dd4bc21e3 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Mon, 29 Jun 2026 01:22:14 -0500 Subject: [PATCH] refac --- src/lib/utils/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/utils/index.ts b/src/lib/utils/index.ts index 28f9682373..27d80f5c27 100644 --- a/src/lib/utils/index.ts +++ b/src/lib/utils/index.ts @@ -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; };