1.Markdown 语法自带格式
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 文字样式