Created
November 23, 2024 18:26
-
-
Save pgtwitter/fccfbb44be019b8ff0b0439f5233dfb1 to your computer and use it in GitHub Desktop.
mermaid.js template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="module"> | |
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs'; | |
mermaid.initialize({ startOnLoad: true }); | |
</script> | |
<div class="mermaid"> | |
flowchart TB | |
A[Start] --> B{Is it?} | |
B -->|Yes| C[OK] | |
B -->|No| D[Not OK] | |
</div> |
Author
pgtwitter
commented
Nov 23, 2024

Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment