For this diagram
````md
```mermaid
flowchart LR
List@{ shape: braces, label: "π List
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
````
I want to add exactly one empty line between `π List` and the steps.
All my attempts, however, give different results:
1. ````md
```mermaid
flowchart LR
List@{ shape: braces, label: "π List
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
````
```mermaid
flowchart LR
List@{ shape: braces, label: "π List
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
2. ````md
```mermaid
flowchart LR
List@{ shape: braces, label: "π List<br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
````
```mermaid
flowchart LR
List@{ shape: braces, label: "π List<br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
3. ````md
```mermaid
flowchart LR
List@{ shape: braces, label: "π List<br><br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
````
```mermaid
flowchart LR
List@{ shape: braces, label: "π List<br><br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
4. ````md
```mermaid
flowchart LR
List@{ shape: braces, label: "π List
<br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
````
```mermaid
flowchart LR
List@{ shape: braces, label: "π List
<br>
β Step A
β Step B
β Step C
β Step D
β Step E
β Step F
β Step G" }
```
... except 3 and 4 (which both render 3 `<br/>`s)
I have looked at the help:
* There is no mentioning of `label:` parameter in `shape:`, and
* In https://mermaid.ai/open-source/syntax/flowchart.html#parameters of Icon Shape, it merely says `label: The text label associated with the icon. This can be any string. If not defined, no label will be displayed.` - without specifying what syntax the `label:` has.
According to Commonmark rules, a newline with an empty line is enough to generate a paragraph.
I am very new to Mermaid - so it might be mentioned somewhere else.
Thank you for your time and effort
Hellou there,
Related to this Mermaid discussion: https://github.com/orgs/mermaid-js/discussions/7332
Iβm seeing different rendering in mkdocs (via mkdocs-mermaid2) vs GitHub / https://mermaid.live/edit for blank lines inside a shape
label:.tl;dr it seems that there is no way to render one new line between
π Listand the steps - even when<br/>is usedI realize that mkdocs does NOT render according to Commonmark rules. Also, I am new to mkdocs - so my config might not be the best.
Here's my gfm comment source:
Environment: