Skip to content

Instantly share code, notes, and snippets.

@ledsun
Created March 18, 2022 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ledsun/ebcbf45d1495f6a571db0e2d69ce5091 to your computer and use it in GitHub Desktop.
Save ledsun/ebcbf45d1495f6a571db0e2d69ce5091 to your computer and use it in GitHub Desktop.
marmaid.jsでシーケンス図を描くためのテンプレート
<html>
<body>
<script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.min.js"></script>
<script>mermaid.initialize({startOnLoad:true});</script>
<div class="mermaid">
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment