... | ... | @@ -3,6 +3,8 @@ |
|
|
- Turtle
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- `#F00`
|
|
|
- `#F00A`
|
|
|
- `#FF0000`
|
... | ... | @@ -12,3 +14,22 @@ |
|
|
- `RGBA(0,255,0,0.3)`
|
|
|
- `HSL(540,70%,50%)`
|
|
|
- `HSLA(540,70%,50%,0.3)`
|
|
|
|
|
|
|
|
|
|
|
|
```mermaid
|
|
|
graph TB
|
|
|
|
|
|
SubGraph1 --> 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 --> SubGraph1[Jump to SubGraph1]
|
|
|
SubGraph1 --> FinalThing[Final Thing]
|
|
|
end
|
|
|
``` |
|
|
\ No newline at end of file |