Skip to content

Latest commit

 

History

History
57 lines (49 loc) · 965 Bytes

DiagramsSpecs.md

File metadata and controls

57 lines (49 loc) · 965 Bytes

Extensions

Adds support for diagrams extension:

Mermaid diagrams

Using a fenced code block with the mermaid language info will output a <div class='mermaid'> instead of a pre/code block:

```mermaid
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
```
.
<div class="mermaid">graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
</div>

nomnoml diagrams

Using a fenced code block with the nomnoml language info will output a <div class='nomnoml'> instead of a pre/code block:

```nomnoml
[example|
  propertyA: Int
  propertyB: string
|
  methodA()
  methodB()
|
  [subA]--[subB]
  [subA]-:>[sub C]
]
```
.
<div class="nomnoml">[example|
  propertyA: Int
  propertyB: string
|
  methodA()
  methodB()
|
  [subA]--[subB]
  [subA]-:>[sub C]
]
</div>

TODO: Add other text diagram languages