0%

From 0 to X: Hexo -- 0x01

0%: 从0开始的Hexo流程图探险

15%: Graphviz?Dot?这都是什么🧎‍♀️?

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
digraph demo4 {
label=<<B>Graphviz基本组成结构</B>>;

labelloc=t; // 标题位置
bgcolor=white; // 背景透明

node[shape=box]; // 结点形状为方形
//edge[style=bold];

// 独立出现的为结点或属性声明, 中括号前为结点名称
graphviz[label="Graphviz"];

subgraph{
layout[label="Layouts"];
script[label="Script Files"];
api[label="APIs"];
rank=same;
}

graphviz -> layout;
graphviz -> script;
graphviz -> api;

// 设置子图
api ->
subgraph{
layout_etc[label="......"];
}

script ->
subgraph{
element[label="Elements"];
attribute[label="Attributes"];
rank=same;
}

layout ->
subgraph{
layout_dot[label="dot"];
layout_neato[label="neato"];
}

element ->
subgraph{
ele_graph[label="Graph"];
ele_node[label="Node"];
ele_edge[label="Edge"];
}
}
graph TD;
    A-->B;
    A-->C;
    B-->D;
    C-->D;
First Term
This is the definition of the first term.
Second Term
: This is one definition of the second term.
This is another definition of the second term.