From 1d747f664b9fe3ba8f5842d39b064db2ae005f2d Mon Sep 17 00:00:00 2001 From: Marc Faber Date: Sun, 17 Nov 2019 17:37:30 +0100 Subject: [PATCH] #1062 added parallelogram nodes to documentation --- docs/flowchart.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/flowchart.md b/docs/flowchart.md index 65e3b43af..c0fe7ad6e 100644 --- a/docs/flowchart.md +++ b/docs/flowchart.md @@ -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 ```