Sorry, we don't support your browser.  Install a modern browser
This post is closed.

Mermaid flowchart support#6

Allow for the rendering of Mermaid flow charts in content

a year ago
2
N

see also #90

a year ago

This is currently now supported by including the script and initialising mermaid on page. Eg:

<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>
    mermaid.initialize({startOnLoad: true});
</script>

<div class="mermaid">
  graph TD;
    A[Start] --> B[Process]
    B --> C[End]
</div>

Just note that free blogs can’t include or run JS for security purposes.

7 months ago
1
Changed the status to
Completed
7 months ago
1