From eb04d80df01c73a8e74b09e10d728725254976ef Mon Sep 17 00:00:00 2001 From: knsv Date: Mon, 20 Feb 2023 10:23:13 +0000 Subject: [PATCH] Update docs --- docs/syntax/flowchart.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/syntax/flowchart.md b/docs/syntax/flowchart.md index fd0408c45..4a2f6cca5 100644 --- a/docs/syntax/flowchart.md +++ b/docs/syntax/flowchart.md @@ -391,6 +391,20 @@ flowchart LR A == text ==> B ``` +### An invisisble link + +This can be a usefull tool in some instances where you want to alter the default positining of a node. + +```mermaid-example +flowchart LR + A ~~~ B +``` + +```mermaid +flowchart LR + A ~~~ B +``` + ### Chaining of links It is possible declare many links in the same line as per below: