日本語
Mermaid で図を表示する
```mermaid flowchart LR subgraph subgraph1 direction TB top1[top] --> bottom1[bottom] end subgraph subgraph2 direction TB top2[top] --> bottom2[bottom] end %% ^ これらのサブグラフは、リンク先の違いを除いて同一です: %% subgraph1 へのリンク: subgraph1 の向きは維持されます outside --> subgraph1 %% subgraph2 内でのリンク: %% subgraph2 はトップレベルグラフ(LR)の向きを継承します outside ---> top2 ```
```mermaid // ここに Mermaid の図のコードを記述 ```