#1295 Markers implmented, the gereric pattern and diagram specific for flowcharts.

This commit is contained in:
Knut Sveidqvist
2020-03-16 07:55:02 +01:00
parent 5b74d75011
commit 215e930da4
7 changed files with 140 additions and 31 deletions

View File

@@ -101,9 +101,20 @@
b-->id1
id1 --> id2
</div>
new:
<div class="mermaid" style="width: 100%; height: 100%">
flowchart LR
a o--o b
a <--> b
b o--o c
c x--x d
a2 --> b2
b2 --o c2
c2 --x d2
</div>
old:
<div class="mermaid" style="width: 100%; height: 100%">
graph LR
a --> b
</div>
</div>