#1386 Adding subroutine support for new rendering engine

This commit is contained in:
Knut Sveidqvist
2020-05-03 21:52:44 +02:00
parent 66fa8a7595
commit a20e6086cc
3 changed files with 65 additions and 16 deletions

View File

@@ -359,6 +359,40 @@ graph TB
B --> D
```
## Beta: New arrow types
When using flowchart instead of graph there is the are new types of arrows supported as per below:
```
flowchart LR
A --o B
B --x C
```
```mermaid
flowchart LR
A --o B
B --x C
```
## Beta: multi directional arrows
When using flowchart instead of graph there is the possibility to use multidirectional arrows.
```
flowchart LR
A o--o B
B <--> C
C x--x D
```
```mermaid
flowchart LR
A o--o B
B <--> C
C x--x D
```
## Special characters that break syntax