简体中文
使用 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 图表代码 ```