Fix for arrow cross

This commit is contained in:
Knut Sveidqvist
2024-12-20 15:13:52 +01:00
parent 35aa869adc
commit 9bf2bda539
4 changed files with 71 additions and 22 deletions

View File

@@ -124,9 +124,20 @@ config:
theme: redux
layout: dagre
---
flowchart LR
A --> B
</pre
>
<pre id="diagram4" class="mermaid2">
---
config:
look: neo
theme: redux
layout: elk
---
flowchart TD
A("ss") --- n1["Rectangle"] & n2["Rounded"] & n3(["Stadium"])
n1 --x n4["Diamond"]
A{"Diamond"} --- n1["Rectangle"] & n2["Rounded"] & n3(["Stadium"])
n1 --x n4["Rounded"]
n2 --o n5["Hexagon"]
n3 --> n6["Parallelogram"]
n5 o--o n7["Trapezoid"]
@@ -136,18 +147,21 @@ flowchart TD
n7 --> n11["Pine"]
n9 --> n12["Peach"]
n2@{ shape: rounded}
n4@{ shape: diam}
n4@{ shape: rounded}
n5@{ shape: hex}
n6@{ shape: lean-l}
n7@{ shape: trap-b}
n8@{ shape: lean-r}
n10:::Rose
n11:::Pine
n12:::Peach
classDef Rose stroke-width:1px, stroke-dasharray:none, stroke:#FF5978, fill:#FFDFE5, color:#8E2236
classDef Pine stroke-width:1px, stroke-dasharray:none, stroke:#254336, fill:#27654A, color:#FFFFFF
classDef Peach stroke-width:1px, stroke-dasharray:none, stroke:#FBB35A, fill:#FFEFDB, color:#8F632D
n10 --x End
n11 --x End
n12 --x End
</pre
>