Mermaid記法_flowchart(フローチャート)
public.icon
from Mermaid記法サンプル
mermaid記法_フローチャート
Flowcharts Syntax | Mermaid
flowchart LR
TB - Top to bottom
TD - Top-down/ same as top to bottom
BT - Bottom to top
RL - Right to left
LR - Left to right
以下サンプル
code:mmd
flowchart
c1-- ライン説明 -->a2
subgraph one
a1-.->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
one --> two
three --> two
two --> c2
code:mmd
flowchart LR
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
one --> two
three --> two
two --> c2