```mermaid flowchart TB subgraph a[Right] direction TB A' --> B' --> C' --> D' --> A' end subgraph b[Left] direction TB A --> B --> C --> D end A' --> D A --> D' ```
flowchart TB
subgraph a[Right]
direction TB
A' --> B' --> C' --> D' --> A'
end
subgraph b[Left]
direction TB
A --> B --> C --> D
end
A' --> D
A --> D'
subgraph a 和 subgraph b 如果交换代码位置,subgraph a 由于代码位置靠后,所以布局靠前,更不易被调整位置,所以abcd按照主轴方向依次向下排列,这样看起来顺眼多了。
1 2 3 4 5 6 7 8 9 10 11 12 13
```mermaid flowchart TB subgraph b[Left] direction TB A --> B --> C --> D end subgraph a[Right] direction TB A' --> B' --> C' --> D' --> A' end A' --> D A --> D' ```
flowchart TB
subgraph b[Left]
direction TB
A --> B --> C --> D
end
subgraph a[Right]
direction TB
A' --> B' --> C' --> D' --> A'
end
A' --> D
A --> D'
$ ssh -T git@github.com Hi OriginUserName! You've successfully authenticated, but GitHub does not provide shell access. $ ssh -T git@new.github.com Hi NewUserName! You've successfully authenticated, but GitHub does not provide shell access.
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.