Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions content/flowchart.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,23 @@ graph LR
id1{This is the text in the box}
```

### A node (trapezoids)

```mermaid
graph LR
id1[/This is the text in the box\]
id2[\This is the text in the box/]
```


### A node (parallelograms)

```mermaid
graph LR
id1[/This is the text in the box/]
id2[\This is the text in the box\]
```

## Links between nodes

Nodes can be connected with links/edges. It is possible to have different types of links or attach a text string to a link.
Expand Down