Skip to content

Commit

Permalink
#3192 Adding link type of the std docs
Browse files Browse the repository at this point in the history
  • Loading branch information
knsv committed Oct 12, 2022
1 parent eec97d1 commit 4d46ea9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/flowchart.md
Expand Up @@ -264,6 +264,20 @@ flowchart LR
A --- 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
```

### Text on links

```mermaid-example
Expand Down
9 changes: 9 additions & 0 deletions packages/mermaid/src/docs/flowchart.md
Expand Up @@ -167,6 +167,15 @@ flowchart LR
A --- 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
```

### Text on links

```mermaid-example
Expand Down

1 comment on commit 4d46ea9

@fkohrt
Copy link
Contributor

@fkohrt fkohrt commented on 4d46ea9 Nov 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@knsv I wanted to fix your typo "invisisble" → "invisible", but I cannot figure out where to commit that change. In fact, I cannot find your changes in the develop branch either, neither at packages/mermaid/src/docs/syntax/flowchart.md (the documentation source) nor at docs/syntax/flowchart.md (the autogenerated result). I can only find it in the tagged release v9.2.1 at docs/flowchart.md

Please sign in to comment.