|
|
```mermaid
|
|
|
graph TD
|
|
|
A --> B;
|
|
|
```
|
|
|
|
|
|
|
|
|
```mermaid
|
|
|
graph TB
|
|
|
|
... | ... | @@ -20,3 +14,20 @@ graph TB |
|
|
SubGraph1 --> FinalThing[Final Thing]
|
|
|
end
|
|
|
```
|
|
|
|
|
|
```mermaid
|
|
|
graph TB
|
|
|
|
|
|
Section1 --> SubGraph1Flow
|
|
|
subgraph "SubGraph 1 Flow"
|
|
|
SubGraph1Flow(SubNode 1)
|
|
|
SubGraph1Flow -- Choice1 --> DoChoice1
|
|
|
SubGraph1Flow -- Choice2 --> DoChoice2
|
|
|
end
|
|
|
|
|
|
subgraph "Main Graph"
|
|
|
Node1[Node 1] --> Node2[Node 2]
|
|
|
Node2 --> Section1[Jump to SubGraph1]
|
|
|
Section1 --> FinalThing[Final Thing]
|
|
|
end
|
|
|
``` |
|
|
\ No newline at end of file |