Skip to content

Instantly share code, notes, and snippets.

@pgtwitter
Created November 23, 2024 18:26
Show Gist options
  • Save pgtwitter/fccfbb44be019b8ff0b0439f5233dfb1 to your computer and use it in GitHub Desktop.
Save pgtwitter/fccfbb44be019b8ff0b0439f5233dfb1 to your computer and use it in GitHub Desktop.
mermaid.js template
<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>
@pgtwitter
Copy link
Author

スクリーンショット 2024-11-24 3 27 43

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