mirror of https://github.com/garrytan/gstack.git
38 lines
565 B
Markdown
38 lines
565 B
Markdown
# Diagram Gate
|
|
|
|
A relative local image (CRITICAL regression: must render, not 404):
|
|
|
|

|
|
|
|
## First diagram
|
|
|
|
```mermaid title="Gate pipeline"
|
|
graph LR
|
|
GATEALPHA[gatealphanode] --> GATEBETA{gatebetanode}
|
|
GATEBETA -->|yes| GATEGAMMA[gategammanode]
|
|
```
|
|
|
|
## Second diagram (id-collision check)
|
|
|
|
```mermaid
|
|
graph TD
|
|
GATEDELTA[gatedeltanode] --> GATEEPSILON[gateepsilonnode]
|
|
```
|
|
|
|
## Kept as source
|
|
|
|
```mermaid render=false
|
|
graph LR
|
|
RAWKEPT --> ASCODE
|
|
```
|
|
|
|
## Deliberately broken
|
|
|
|
```mermaid
|
|
graph LR
|
|
A -->
|
|
(((
|
|
```
|
|
|
|
Done.
|