1.Markdown 语法自带格式

注意:此页面偶尔会存在 CSS 冲突问题!

1.1 代码块

1
2
3
4
5
6
7
8
9
10
11
12
13
\```shell
# VSCode终端
hexo clean; hexo s
hexo clean; hexo g; hexo d
git add .; git commit -m "npm publish"; npm version patch;
git push

# Cmder终端
hexo clean && hexo s
hexo clean && hexo g && hexo d
git add . && git commit -m "npm publish" && npm version patch
git push
\```
1
2
3
4
5
6
7
8
9
10
11
# VSCode终端
hexo clean; hexo s
hexo clean; hexo g; hexo d
git add .; git commit -m "npm publish"; npm version patch;
git push

# Cmder终端
hexo clean && hexo s
hexo clean && hexo g && hexo d
git add . && git commit -m "npm publish" && npm version patch
git push

1.2 多级标题

1
2
3
4
5
6
# H1
## H2
### H3
#### H4
##### H5
###### H6

见本文章标题!

1.3 文字样式