Skip to content

Mermaid图

一款用code画图的软件,obsidian也支持Mermaid。 官网:https://mermaid.js.org/intro/

Diagram Types

Flowchart 流程图

例子:

mermaid
graph TD;
	A-->B;
	A-->C;
	B-->D;
	C-->E;

Gantt 甘特图

mermaid
gantt
    title 甘特图demo
    dateFormat  YYYY-MM-DD
    section 第一阶段
    A task           :a1, 2014-01-01, 30d
    Another task     :after a1  , 20d
    section 第二阶段
    Task in sec      :2014-01-12  , 12d
    another task      : 24d

Pie Chat

mermaid
pie title 消费构成
    "饮食" : 650
    "宠物" : 85
    "购物" : 150

Released under the MIT License.