「VisualStudioCode/Mermaid」の版間の差分
提供: 初心者エンジニアの簡易メモ
(ページの作成:「==インストール== https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid ==サンプル==」) |
(→サンプル) |
||
| 行3: | 行3: | ||
==サンプル== | ==サンプル== | ||
| + | class.md | ||
| + | <pre> | ||
| + | ```mermaid | ||
| + | graph TD; | ||
| + | A-->B; | ||
| + | A-->C; | ||
| + | B-->D; | ||
| + | C-->D; | ||
| + | ``` | ||
| + | </pre> | ||
2023年12月6日 (水) 23:37時点における版
インストール
https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid
サンプル
class.md
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```
