fix: deprecate flowchart.htmlLabels

on-behalf-of: @Mermaid-Chart <hello@mermaidchart.com>
This commit is contained in:
darshanr0107
2025-09-25 11:58:18 +05:30
parent d5c4eff251
commit 1672edbd49
24 changed files with 134 additions and 56 deletions

View File

@@ -372,7 +372,7 @@ The list of configuration objects are described [in the mermaidAPI documentation
```html
<script type="module">
import mermaid from './mermaid.esm.mjs';
let config = { startOnLoad: true, flowchart: { useMaxWidth: false, htmlLabels: true } };
let config = { startOnLoad: true, htmlLabels: true, flowchart: { useMaxWidth: false } };
mermaid.initialize(config);
</script>
```