Add link examples

This commit is contained in:
AllSpiceUser 2022-10-14 21:01:18 +00:00
parent f5fac10ecc
commit a9805275c5

View File

@ -61,4 +61,24 @@ flowchart TB;
Parallelagram2[\Parallelagram-R2L\]
Trapezoid1[/Trapezoid 1\]
Trapezoid2[\Trapezoid 2/]
```
## Links
```mermaid
flowchart LR;
Start[Line] --- End[Line];
EndR2L[Line] --> StartR2L[Arrow];
Start4[Dotted] -.- End4[Line];
StartThick2[Thick] === EndThick2[Line];
StartThick[Thick] ==> EndThick[Arrow];
Chain1b[Chain] --> Chain2b[Link] --> Chain3b[Nodes];
Start2[Line] --> |text in link| End2[Arrow];
Start3[Line] --- |text in link| End3[Line];
Start5[Dotted] -.- |text in link| End5[Line];
StartThick3[Thick] ==> |text in link| EndThick3[Arrow];
StartThick4[Thick] === |text in link| EndThick4[Line];
Chain1[Chain] -- text in link --> Chain2[Link] -- text in link --> Chain3[Nodes];
```