Merge pull request #1070 from GDFaber/develop

Bug/1062 Parallelogram shaped nodes are not in documentation
This commit is contained in:
Nacho
2019-11-18 08:41:24 -05:00
committed by GitHub

View File

@@ -123,6 +123,28 @@ graph LR
id1{{This is the text in the box}}
```
### Parallelogram
```
graph TD
id1[/This is the text in the box/]
```
```mermaid
graph TD
id1[/This is the text in the box/]
```
### Parallelogram alt
```
graph TD
id1[\This is the text in the box\]
```
```mermaid
graph TD
id1[\This is the text in the box\]
```
### Trapezoid
```