Created
March 18, 2022 11:19
-
-
Save ledsun/ebcbf45d1495f6a571db0e2d69ce5091 to your computer and use it in GitHub Desktop.
marmaid.jsでシーケンス図を描くためのテンプレート
This file contains 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
<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