foam-template/docs/features/画流程图.md
2021-12-08 23:05:22 +08:00

15 lines
412 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 画流程图
mermaid支持用代码块描述流程图、用户图、类图、等并在预览模式中展示成图片。
[mermaid官网](https://mermaid-js.github.io/)中有详细的语法介绍。
点击右上角的预览图标或`cmd+shift+P`输入`Markdown: Open Preview to the Side`命令,查看下列代码展示的流程图。
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```