Hexo

1
2
3
4
新建文章:hexo n "文章标题" = hexo new post "文章标题"
清理缓存:hexo clean
生成静态:hexo g
开始部署:hexo d

Markdown

字体/颜色/大小

1
2
3
4
5
6
7
8
9
1. <font face="黑体">黑体字</font>
2. <font face="微软雅黑">微软雅黑</font>
3. <font face="STCAIYUN">华文彩云</font>
4. <font color=red>红色</font>
5. <font color=#008000>绿色</font>
6. <font color=Blue>蓝色</font>
7. <font size=5>尺寸</font>
8. <font face="黑体" color=green size=5>黑体,绿色,尺寸为5</font>

文字背景色

1
<table><tr><td bgcolor=blue>背景色blue</td></tr></table>

simple

1
2
3
4
5
6
7
8
9
10
11
12
13
14
1. {% note simple %}默认 提示块标签{% endnote %}

2. {% note default simple %}default 提示块标签{% endnote %}

3. {% note primary simple %}primary 提示块标签{% endnote %}

4. {% note success simple %}success 提示块标签{% endnote %}

5. {% note info simple %}info 提示块标签{% endnote %}

6. {% note warning simple %}warning 提示块标签{% endnote %}

7. {% note danger simple %}danger 提示块标签{% endnote %}

modern

1
2
3
4
5
6
7
8
9
10
11
12
13
14
1. {% note modern %}默认 提示块标签{% endnote %}

2. {% note default modern %}default 提示块标签{% endnote %}

3. {% note primary modern %}primary 提示块标签{% endnote %}

4. {% note success modern %}success 提示块标签{% endnote %}

5. {% note info modern %}info 提示块标签{% endnote %}

6. {% note warning modern %}warning 提示块标签{% endnote %}

7. {% note danger modern %}danger 提示块标签{% endnote %}

上标签 Tip

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
1. {% tip %}默认情况{% endtip %}

2. {% tip success %}success{% endtip %}

3. {% tip error %}error{% endtip %}

4. {% tip warning %}warning{% endtip %}

5. {% tip bolt %}bolt{% endtip %}

6. {% tip ban %}ban{% endtip %}

7. {% tip home %}home{% endtip %}

8. {% tip sync %}sync{% endtip %}

9. {% tip cogs %}cogs{% endtip %}

10. {% tip key %}key{% endtip %}

11. {% tip bell %}bell{% endtip %}

12. {% tip fa-atom %}自定义font awesome图标{% endtip %}