#1295 Adding support for forks and joins

This commit is contained in:
Knut Sveidqvist
2020-04-26 10:07:25 +02:00
parent 5662c06a33
commit fd37edc53f
3 changed files with 48 additions and 15 deletions

View File

@@ -49,14 +49,21 @@
}
</div>
<div class="mermaid" style="width: 50%; height: 20%;">
stateDiagram-v2
State1: This a a single line description
State2: This a a multi line description
State2: here comes the multi part
a
[*] --> State1
State1 --> State2
State2 --> [*]
stateDiagram-v2
[*]-->TV
state TV {
state fork_state &lt;&lt;fork&gt;&gt;
[*] --> fork_state
fork_state --> State2
fork_state --> State3
state join_state &lt;&lt;join&gt;&gt;
State2 --> join_state
State3 --> join_state
join_state --> State4
State4 --> [*]
}
</div>
<div class="mermaid2 mermaid-apa" style="width: 100%; height: 20%;">
stateDiagram