mermaid是一个基于Javascript的图表绘制工具,类似markdown用文本语法,用于描述文档图形(流程图、 时序图、甘特图),开发者可以通过一段mermaid文本来生成SVG或者PNG形式的图形。如果熟悉Markdown,则学习Mermaid的语法不会有任何问题。mermaid官方文档见mermaid,mermaid官方仓库见mermaid-js。
目录
mermaid有四种使用方式:
mermaid的网页版编辑器地址如下:mermaid-live-editor。打开该网页后界面如下图所示:
网页中各个部件的作用如下所示:
使用插件,您可以从流行的应用程序中生成mermaid图,就像使用实时编辑器一样。mermaid插件使用见mermaid插件列表和mermaid插件用法。
此方法可以与任何常见的Web服务器一起使用。Apache,IIS,nginx,node express,您可以自由选择。您还需要一个文本编辑工具(如Notepad ++)来生成html文件。然后,通过网络浏览器(例如Firefox,Chrome,Safari和Internet Explorer)进行部署。该API通过从源中提取渲染指令mermaid.js以渲染页面中的图表来工作。
在编写html文件时,我们在html代码中给web浏览器三条指令:
通过mermaid.js或mermaid.min.js获取通过mermaid的渲染模块。具体为对外部CDN的引用或作为单独文件的mermaid.js的引用:
我们要创建的图表的mermaid代码。每个mermaid.图表/图形/图表定义都必须具有单独的div标签
调用mermaid.initialize()以指示图的外观,或启动呈现过程。
调用实例例代码如下(创建html文件,输入以下代码)
通过CDN调用mermaidAPI
Here is one mermaid diagram:
<div class="mermaid">
graph TD
A[Client] --> B[Load Balancer]
B --> C[Server1]
B --> D[Server2]
</div>
And here is another:
<div class="mermaid">
graph TD
A[Client] -->|tcp_123| B(Load Balancer)
B -->|tcp_456| C[Server1]
B -->|tcp_456| D[Server2]
</div>
将mermaid.js作为单独的JavaScript文件进行引用
具体步骤如下:
某些markdown编译器会内嵌mermaid,只要输入以下语法就可以直接渲染mermaid图。
如下图所示,如果下面markdown展现为图表示支持该markdown编译器支持mermaid,否则不支持。
graph TD
A[Client] --> B[Load Balancer]
B --> C[Server1]
B --> D[Server2]
mermaid提供如下绘图类型。其中名字加粗的绘图类型在本文会提及到使用用法,其他绘图类型可以参看文档链接。
绘图类型
文档链接
流程图Flowcharts
时序图Sequence diagrams
类图Class diagrams
状态图State diagrams
实体关系图Entity Relationship Diagrams
用户历程图User Journey Diagram
甘特图Gantt diagrams
饼图Pie chart diagrams
需求图Requirement Diagram
mermaid的configuration配置很多,具体见mermaidAPI。
主题设置
对于主题设置,主要有'default', 'forest', 'dark', 'neutral', 'null'等选项。通过mermaid配置文件修改即可。在mermaid在线编辑器种修改方式如下:
此外我们也可以直接在代码中修改主题配置,如下所示。
%%{init: {'theme':'forest'}}%%
graph TD
a --> b
%%{init: {'theme':'forest'}}%%
graph TD
a --> b
关于自定义主题见theming
注释
可以在流程图中输入注释,解析器将忽略它们。注释必须自己一行,并且必须以%%(双百分号)开头。 注释开始到下一个换行符之后的所有文本都将被视为注释,包括任何绘图语法。
graph LR
%% this is a comment A -- text --> B{node}
A -- text --> B -- text2 --> C
graph LR
%% this is a comment A -- text --> B{node}
A -- text --> B -- text2 --> C
所有流程图均由节点,几何形状和边缘,箭头或线条组成。mermaid代码定义了制作这些节点和边缘并进行交互的方式。它还可以适应不同的箭头类型,多向箭头以及与子图之间的链接。值得注意的是:不要将“end”作为流程图节点键入。将所有或任何一个字母大写,以防止流程图中断,即“End”或“END”。流程图各种部件如下介绍。
节点node(默认)
graph LR
id
graph LR
id
带有文本的节点
也可以在框中设置与id不同的文本。如果多次执行此操作,则将使用为节点找到的最后一个文本。此外,如果稍后为节点定义边,则可以忽略文本定义。渲染时将使用前面定义的n那个。
graph LR
id1[This is the text in the box]
graph LR
id1[This is the text in the box]
图形graph
该语句声明了流程图的方向。这声明了图的方向是从上到下(TD或TB)。
graph TD
Start --> Stop
graph TD
Start --> Stop
以下语句声明了图的方向是从左到右(LR)。
graph LR
Start --> Stop
graph LR
Start --> Stop
流程图方向
以下语句声明可能的流程图方向为:
节点形状
具有圆边的节点
graph LR
id1(This is the text in the box)
graph LR
id1(This is the text in the box)
体育场形状的节点
graph LR
id1([This is the text in the box])
graph LR
id1([This is the text in the box])
子程序形状的节点
graph LR
id1[[This is the text in the box]]
graph LR
id1[[This is the text in the box]]
圆柱状的节点
graph LR
id1[(Database)]
graph LR
id1[(Database)]
圆形式的节点
graph LR
id1((This is the text in the circle))
graph LR
id1((This is the text in the circle))
不对称形状的节点
graph LR
id1>This is the text in the box]
graph LR
id1>This is the text in the box]
菱形节点
graph LR
id1{This is the text in the box}
graph LR
id1{This is the text in the box}
六角形节点
graph LR
id1{{This is the text in the box}}
graph LR
id1{{This is the text in the box}}
平行四边形节点
graph TD
id1[/This is the text in the box/]
graph TD
id1[/This is the text in the box/]
平行四边形节点
graph TD
id1[/This is the text in the box/]
graph TD
id1[/This is the text in the box/]
梯形节点
graph TD
A[/Christmas]
graph TD
A[/Christmas\]
梯形节点
graph TD
B[\Go shopping/]
graph TD
B[\Go shopping/]
节点之间的链接
带箭头的链接
graph LR
A-->B
graph LR
A-->B
开放链接
graph LR
A --- B
graph LR
A --- B
链接上的文本
graph LR
A-- This is the text! ---B
graph LR
A-- This is the text! ---B
或者
graph LR
A---|This is the text|B
graph LR
A---|This is the text|B
带箭头和文本的链接
graph LR
A-->|text|B
graph LR
A-->|text|B
或者
graph LR
A-- text -->B
graph LR
A-- text -->B
点链接
graph LR;
A-.->B;
graph LR;
A-.->B;
带文本的点链接
graph LR
A-. text .-> B
graph LR
A-. text .-> B
粗链接
graph LR
A ==> B
graph LR
A ==> B
带文本的粗链接
graph LR
A == text ==> B
graph LR
A == text ==> B
多链接
可以按照以下方式在同一行中声明许多链接:
graph LR
A -- text --> B -- text2 --> C
graph LR
A -- text --> B -- text2 --> C
也可以根据以下情况在同一行中声明多个节点链接(&表示和):
graph LR
a --> b & c--> d
graph LR
a --> b & c--> d
然后,您可以以一种非常有表现力的方式描述依赖关系。 像下面的单线:
graph TB
A & B--> C & D
graph TB
A & B--> C & D
如果使用基本语法描述相同的图,则将花费四行。 一言以蔽之,这可能会使图表变得过分沉重,难以阅读。
测试版本:新箭头类型
使用flowchart而不是graph时,根据下文支持新类型的箭头(某些编译器可能不支持):
flowchart LR
A --o B
B --x C
flowchart LR
A --o B
B --x C
测试版本:多向箭头
使用flowchart而不是graph时,有可能使用多向箭头。
flowchart LR
A o--o B
B <--> C
C x--x D
flowchart LR
A o--o B
B <--> C
C x--x D
概括
对于点链接或粗链接,要添加的字符等于符号或点,如下表所概括:
长度
1
2
3
正常
---
----
-----
带箭头
-->
--->
---->
粗链接
===
====
=====
粗链接带箭头
==>
===>
====>
点链接
-.-
-..-
-…-
点链接带箭头
-.->
-..->
-…->
特殊字符
可以将文本放在引号中,以呈现更麻烦的字符。 如下例所示:
graph LR
id1["This is the (text) in the box"]
graph LR
id1["This is the (text) in the box"]
子图Subgraphs
基础语法见
subgraph title
graph definition
end
下面的示例:
graph TB
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
graph TB
c1-->a2
subgraph one %%第一个子图
a1-->a2
end
subgraph two %%第二个子图
b1-->b2
end
subgraph three %%第三个子图
c1-->c2
end
您还可以为子图设置一个显式 ID。
graph TB
c1-->a2
subgraph ide1 [one]
a1-->a2
end
graph TB
c1-->a2
subgraph ide1 [one]
a1-->a2
end
使用graphtype流程图,也可以如下图所示在子图之间设置边线。
flowchart TB
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
one --> two
three --> two
two --> c2
flowchart TB
c1-->a2
subgraph one
a1-->a2
end
subgraph two
b1-->b2
end
subgraph three
c1-->c2
end
one --> two
three --> two
two --> c2
fontawesome的支持
可以从字体中添加图标。图标通过语法fa:#icon class name#.访问。
graph TD
B["fa:fa-twitter for peace"]
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
B-->E(A fa:fa-camera-retro perhaps?);
graph TD
B["fa:fa-twitter for peace"]
B-->C[fa:fa-ban forbidden]
B-->D(fa:fa-spinner);
B-->E(A fa:fa-camera-retro perhaps?);
时序图是一种交互图,它显示了进程如何相互操作以及以什么顺序进行操作。mermaid基础时序图语法如下所示:
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
sequenceDiagram
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
Alice-)John: See you later!
以下介绍基础语法。
参与者
可以像在此页上的第一个示例中那样隐式定义参与者。参与者或演员在图表源文本中按出现顺序进行渲染。有时,您可能想以不同的顺序向参与者显示与第一条消息中的参与者不同的顺序。通过执行以下操作可以指定参与者的出现顺序:
sequenceDiagram
participant John
participant Alice
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
sequenceDiagram
participant John
participant Alice
Alice->>John: Hello John, how are you?
John-->>Alice: Great!
别名
参与者可以具有方便的标识符和描述性标签。
sequenceDiagram
participant A as Alice
participant J as John
A->>J: Hello John, how are you?
J->>A: Great!
sequenceDiagram
participant A as Alice
participant J as John
A->>J: Hello John, how are you?
J->>A: Great!
消息
消息可以是实线或虚线显示的两种。基础语法如下所示:
[Actor][Arrow][Actor]:Message text
当前支持六种类型的箭头:
类型
描述
->
实线无箭头
-->
虚线无箭头
->>
实线带箭头
-->>
虚线带箭头
-x
实线末端带有叉号
--x
虚线末端带有叉字
-)
实线末端带有空心箭头
--)
虚线末端带有空心箭头
激活方式
可以激活和停用参与者。激活和停用声明如下:
sequenceDiagram
Alice->>John: Hello John, how are you?
activate John
John-->>Alice: Great!
deactivate John
sequenceDiagram
Alice->>John: Hello John, how are you?
activate John
John-->>Alice: Great!
deactivate John
通过在消息箭头后面添加+/-后缀,还有一种快捷方式表示法:
sequenceDiagram
Alice->>+John: Hello John, how are you?
John-->>-Alice: Great!
sequenceDiagram
Alice->>+John: Hello John, how are you?
John-->>-Alice: Great!
对于同一参与者可以堆叠激活:
sequenceDiagram
Alice->>+John: Hello John, how are you?
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
John-->>-Alice: I feel great!
sequenceDiagram
Alice->>+John: Hello John, how are you?
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
John-->>-Alice: I feel great!
注解
可以在时序图中添加注解。添加的语法为Note [ right of | left of | over ] [Actor]
sequenceDiagram
participant John
Note right of John: Text in note
sequenceDiagram
participant John
%% Note [ right of | left of | over ] [Actor]
Note right of John: Text in note
也可以创建跨越两个参与者的注解:
sequenceDiagram
Alice->John: Hello John, how are you?
Note over Alice,John: A typical interaction
sequenceDiagram
Alice->John: Hello John, how are you?
Note over Alice,John: A typical interaction
循环
可以在时序图中表达循环。语法如下:
loop Loop text
... statements ...
end
例子如下:
sequenceDiagram
Alice->John: Hello John, how are you?
loop Every minute
John-->Alice: Great!
end
sequenceDiagram
Alice->John: Hello John, how are you?
loop Every minute
John-->Alice: Great!
end
替代
可以在顺序图中表达替代路径。语法如下:
alt Describing text
... statements ...
else
... statements ...
end
或是否有可选的序列(如果没有其他序列)。
opt Describing text
... statements ...
end
请参见下面的示例:
sequenceDiagram
Alice->>Bob: Hello Bob, how are you?
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
opt Extra response
Bob->>Alice: Thanks for asking
end
sequenceDiagram
Alice->>Bob: Hello Bob, how are you?
%% 替代路径
alt is sick
Bob->>Alice: Not so good :(
else is well
Bob->>Alice: Feeling fresh like a daisy
end
%% 可选选项
opt Extra response
Bob->>Alice: Thanks for asking
end
平行
可以显示并行发生的动作。语法如下:
par [Action 1]
... statements ...
and [Action 2]
... statements ...
and [Action N]
... statements ...
end
请参见下面的示例:
sequenceDiagram
par Alice to Bob
Alice->>Bob: Hello guys!
and Alice to John
Alice->>John: Hello guys!
end
Bob-->>Alice: Hi Alice!
John-->>Alice: Hi Alice!
sequenceDiagram
par Alice to Bob
Alice->>Bob: Hello guys!
and Alice to John
Alice->>John: Hello guys!
end
Bob-->>Alice: Hi Alice!
John-->>Alice: Hi Alice!
也可以嵌套并行块。
sequenceDiagram
par Alice to Bob
Alice->>Bob: Go help John
and Alice to John
Alice->>John: I want this done today
par John to Charlie
John->>Charlie: Can we do this today?
and John to Diana
John->>Diana: Can you help us today?
end
end
sequenceDiagram
par Alice to Bob
Alice->>Bob: Go help John
and Alice to John
Alice->>John: I want this done today
par John to Charlie
John->>Charlie: Can we do this today?
and John to Diana
John->>Diana: Can you help us today?
end
end
背景高亮
通过提供彩色背景可以高亮背景。颜色是使用rgb和rgba语法定义的。如下所示:
rect rgb(0, 255, 0)
... content ...
end
rect rgba(0, 0, 255, .1)
... content ...
end
请参阅以下示例:
sequenceDiagram
participant Alice
participant John
rect rgb(191, 223, 255)
note right of Alice: Alice calls John.
Alice->>+John: Hello John, how are you?
rect rgb(200, 150, 255)
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
end
John-->>-Alice: I feel great!
end
Alice ->>+ John: Did you want to go to the game tonight?
John -->>- Alice: Yeah! See you there.
sequenceDiagram
participant Alice
participant John
rect rgb(191, 223, 255)
note right of Alice: Alice calls John.
Alice->>+John: Hello John, how are you?
rect rgb(200, 150, 255)
Alice->>+John: John, can you hear me?
John-->>-Alice: Hi Alice, I can hear you!
end
John-->>-Alice: I feel great!
end
Alice ->>+ John: Did you want to go to the game tonight?
John -->>- Alice: Yeah! See you there.
状态图是计算机科学和相关领域中用来描述系统行为的一种图。状态图要求所描述的系统由有限个状态组成;有时,情况确实如此,而有时这是一种合理的抽象。
mermaid可以渲染状态图。该语法尝试与plantUml中使用的语法兼容,因为这将使用户更容易在mermaid和plantUml之间共享图。PlantUML是一个开源项目,支持绘制UML图。
具体语法如下:
stateDiagram-v2
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]
stateDiagram-v2
[*] --> Still
Still --> [*]
Still --> Moving
Moving --> Still
Moving --> Crash
Crash --> [*]
如上图所示,在状态图中,根据系统状态以及系统状态如何通过转换更改为另一个状态来描述系统。上面的示例图显示了三个状态:静止,移动和崩溃。您从静止状态开始。在“静止”中,您可以将状态更改为“移动中”。在“移动”中,您可以将状态更改回“静止”或“崩溃”。从“静止”到“崩溃”没有过渡。具体介绍见UML之状态图(State Diagram)
状态
可以通过多种方式声明状态。最简单的方法是将状态ID定义为描述。
stateDiagram-v2
s1
stateDiagram-v2
s1
另一种方法是使用state关键字,其说明如下:
stateDiagram-v2
state "This is a state description" as s2
stateDiagram-v2
state "This is a state description" as s2
用描述定义状态的另一种方法是定义状态id,后跟冒号和描述:
stateDiagram-v2
s2 : This is a state description
stateDiagram-v2
s2 : This is a state description
过渡
过渡是一种状态进入另一种状态时的路径/边缘。使用文本箭头“->”表示。当您定义两个状态之间的转换并且尚未定义状态时,将使用转换中的ID来定义未定义状态。您以后可以在以这种方式定义的状态中添加描述。
stateDiagram-v2
s1 --> s2
stateDiagram-v2
s1 --> s2
可以向过渡添加文本。描述它代表什么。
stateDiagram-v2
s1 --> s2: A transition
stateDiagram-v2
s1 --> s2: A transition
开始和结束
有两种特殊状态指示图的开始和停止。这些是用[*]语法编写的,转换到它的方向将其定义为开始或停止状态。
stateDiagram-v2
[*] --> s1
s1 --> [*]
stateDiagram-v2
[*] --> s1
s1 --> [*]
复合状态
在现实世界中使用状态图时,您通常会遇到多维图,因为一个状态可以具有多个内部状态。这些在本术语中称为复合状态。为了定义一个复合状态,您需要使用state关键字,后跟一个ID和{}之间的复合状态的主体。请参见下面的示例:
stateDiagram-v2
[*] --> First
state First {
[*] --> second
second --> [*]
}
stateDiagram-v2
[*] --> First
state First {
[*] --> second
second --> [*]
}
您可以在多个层中执行此操作:
stateDiagram-v2
[*] --> First
state First {
[*] --> Second
state Second {
[*] --> second
second --> Third
state Third {
[*] --> third
third --> [*]
}
}
}
stateDiagram-v2
[*] --> First
state First {
[*] --> Second
state Second {
[*] --> second
second --> Third
state Third {
[*] --> third
third --> [*]
}
}
}
您还可以在复合状态之间定义过渡:
stateDiagram-v2
[*] --> First
First --> Second
First --> Third
state First {
[*] --> fir
fir --> [*]
}
state Second {
[*] --> sec
sec --> [*]
}
state Third {
[*] --> thi
thi --> [*]
}
stateDiagram-v2
[*] --> First
First --> Second
First --> Third
state First {
[*] --> fir
fir --> [*]
}
state Second {
[*] --> sec
sec --> [*]
}
state Third {
[*] --> thi
thi --> [*]
}
fork
可以使用<< fork >> << join >>在图中指定一个fork。
stateDiagram-v2
state fork_state <<fork>>
[*] --> fork_state
fork_state --> State2
fork_state --> State3
state join_state <<join>>
State2 --> join_state
State3 --> join_state
join_state --> State4
State4 --> [*]
stateDiagram-v2
state fork_state <
[*] --> fork_state
fork_state --> State2
fork_state --> State3
state join_state <
State2 --> join_state
State3 --> join_state
join_state --> State4
State4 --> [*]
注解
有时,没有什么比说注解更好的了。状态图中也是如此。在这里,您可以选择将注解放在节点的右侧或左侧。
stateDiagram-v2
State1: The state with a note
note right of State1
Important information! You can write
notes.
end note
State1 --> State2
note left of State2 : This is the note to the left.
stateDiagram-v2
State1: The state with a note
note right of State1
Important information! You can write
notes.
end note
State1 --> State2
note left of State2 : This is the note to the left.
用户历程高度详细地描述了不同用户在系统,应用程序或网站内为完成特定任务所采取的步骤。该技术显示了当前(按原样)的用户工作流程,并揭示了将来的工作流程需要改进的地方。这个图mermaid提供的api不多,主要例子如下:
journey
title My working day
section Go to work
%% 任务语法为Task name: <score>: <comma separated list of actors>
%% Make tea:参与者
%% 5:分数评价,一般0到5,分数越高越好
%% Me:参与者
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 5: Me
journey
title My working day
section Go to work
Make tea: 5: Me
Go upstairs: 3: Me
Do work: 1: Me, Cat
section Go home
Go downstairs: 5: Me
Sit down: 5: Me
甘特图是一种条形图,它说明了一个项目进度表以及完成任何一个项目所需的时间。甘特图说明了项目的终端元素和摘要元素的开始日期和结束日期之间的天数。
甘特图会将每个计划的任务记录为一个从左到右延伸的连续条形图。x轴代表时间,y轴记录不同的任务以及完成任务的顺序。重要的是要记住,当“排除”特定于某个任务的日期,日期或日期集合时,甘特图将通过向右延长相等的天数来适应这些变化,而不是通过在内部形成间隙来适应这些变化。但是,如果排除的日期介于设置为连续开始的两个任务之间,则排除的日期将以图形方式跳过并留空,并且以下任务将在排除日期结束后开始。甘特图有助于跟踪项目完成前所需的时间,但也可以用于以图形方式表示“非工作日”,只需稍作调整。Mermaid可以将甘特图呈现为SVG,PNG或可以粘贴到文档中的MarkDown链接。
gantt
title A Gantt Diagram
dateFormat YYYY-MM-DD
section Section
A task :a1, 2014-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2014-01-12 , 12d
another task : 24d
gantt
title A Gantt Diagram
dateFormat YYYY-MM-DD
section Section
A task :a1, 2014-01-01, 30d
Another task :after a1 , 20d
section Another
Task in sec :2014-01-12 , 12d
another task : 24d
具体语法如下所示:
gantt
%% 设定时间格式
dateFormat YYYY-MM-DD
%% 标题
title Adding GANTT diagram functionality to mermaid
%% excludes`接受YYYY-MM-DD格式的特定日期、一周中的几天(“星期日”)或“周末”,但不接受“工作日”一词
excludes weekends
%% (`excludes` accepts specific dates in YYYY-MM-DD format, days of the week ("sunday") or "weekends", but not the word "weekdays".)
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d
section Critical tasks
Completed task in the critical line :crit, done, 2014-01-06,24h
Implement parser and jison :crit, done, after des1, 2d
Create tests for parser :crit, active, 3d
Future task in critical line :crit, 5d
Create tests for renderer :2d
Add to mermaid :1d
section Documentation
Describe gantt syntax :active, a1, after des1, 3d
Add gantt diagram to demo page :after a1 , 20h
Add another diagram to demo page :doc1, after a1 , 48h
section Last section
Describe gantt syntax :after doc1, 3d
Add gantt diagram to demo page :20h
Add another diagram to demo page :48h
gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram functionality to mermaid
excludes weekends
%% (`excludes` accepts specific dates in YYYY-MM-DD format, days of the week ("sunday") or "weekends", but not the word "weekdays".)
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d
section Critical tasks
Completed task in the critical line :crit, done, 2014-01-06,24h
Implement parser and jison :crit, done, after des1, 2d
Create tests for parser :crit, active, 3d
Future task in critical line :crit, 5d
Create tests for renderer :2d
Add to mermaid :1d
section Documentation
Describe gantt syntax :active, a1, after des1, 3d
Add gantt diagram to demo page :after a1 , 20h
Add another diagram to demo page :doc1, after a1 , 48h
section Last section
Describe gantt syntax :after doc1, 3d
Add gantt diagram to demo page :20h
Add another diagram to demo page :48h
基础语法
基础语法如下,task表示任务,state表示状态。name表示任务别名,name可有可无。start time和end time表示开始结束时间,或者直接设定执行时间time。对于时间的设置具体看上面的语法。
task: state, name,start time, end time
or
task: state, name,time
对于state值,主要有以下几种状态。
对于状态值,可以两两组合,比如crit, active表示关键的活跃任务。如果是done,active只会表示为active。因为不可能出现某个任务既完成又活跃的情况。
输入日期格式
默认输入日期格式为YYYY-MM-DD。您可以定义您的自定义dateFormat。
dateFormat YYYY-MM-DD
支持以下格式选项:
Input Example Description:
YYYY 2014 4 digit year
YY 14 2 digit year
Q 1..4 Quarter of year. Sets month to first month in quarter.
M MM 1..12 Month number
MMM MMMM January..Dec Month name in locale set by moment.locale()
D DD 1..31 Day of month
Do 1st..31st Day of month with ordinal
DDD DDDD 1..365 Day of year
X 1410715640.579 Unix timestamp
x 1410715640579 Unix ms timestamp
H HH 0..23 24 hour time
h hh 1..12 12 hour time used with a A.
a A am pm Post or ante meridiem
m mm 0..59 Minutes
s ss 0..59 Seconds
S 0..9 Tenths of a second
SS 0..99 Hundreds of a second
SSS 0..999 Thousandths of a second
Z ZZ +12:00 Offset from UTC as +-HH:mm, +-HHmm, or Z
手机扫一扫
移动阅读更方便
你可能感兴趣的文章