add par statement to sequenceDiagram

This commit is contained in:
Minoru Nakata
2017-02-02 17:16:26 +09:00
parent 96be32225e
commit 38c5e65c35
6 changed files with 136 additions and 13 deletions

View File

@@ -122,6 +122,21 @@
Alice->>John the Long: Yes... John, how are you?
John the Long-->>Alice: Super!
</div>
<h1>Parallel</h1>
<div class="mermaid">
sequenceDiagram
par Parallel one
Alice->>Bob: Hello Bob, how are you?
Bob-->>Alice: I am good thanks!
and Parallel two
Alice->>Bob: Are you OK?
Bob-->>Alice: Fine!
and Parallel three
Alice->>Bob: What do you think about it?
Bob-->>Alice: It's good!
end
</div>
<br/>