-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a Mermaid sample sequence diagram
- Loading branch information
1 parent
d17b9b2
commit 5b0a1ba
Showing
3 changed files
with
36 additions
and
2 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
```mermaid | ||
sequenceDiagram | ||
title Sample Mermaid Diagram | ||
box Purple Alice & John | ||
participant A | ||
participant J | ||
end | ||
box Another Group | ||
participant B | ||
participant C | ||
end | ||
A->>J: Hello John, how are you? | ||
J->>A: Great! | ||
A->>B: Hello Bob, how is Charley? | ||
B->>C: Hello Charley, how are you? | ||
``` |
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