TruthBean

斌君執筆詩為璩

markdown快速上手

标题

一级标题

1
行首加 "# " (井号加空格)或者文字的第二行加两个等于号("==")

二级标题

1
行首加 "## " (两个井号加空格)或者文字的第二行加两个减号("--")

三四五六级标题

1
跟前面类似,都是在行首前加多个"#"(三级标题加三个,四级标题加四个...)

块区域

1
2
3
4
5
由两行“```”组成,中间为快区域内容,如:
"```"
"块区域"
"```"
注意:没有双引号

代码块

1
2
代码块是文字前加">",如
> console.log("hello")

分割线

1
2
第一种: ***
第二种: ---

强调

1
2
**强调**
效果跟CSS样式“font-weight:bold”效果一样

超链接

[1]:truthbean.com printf('truthbean')


表格

“|”作为垂直列的board, “—“作为表头与表体的分割,”:”作为对其的方式,“:—:” 这种两边同时写的就是居中对其,eg:

1
2
3
4
5
| Tables        | Are           | Cool  |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | here |
| col 2 is | centered | here |
| zebra stripes | are neat | here |

效果如下:

Tables Are Cool
col 3 is right-aligned here
col 2 is centered here
zebra stripes are neat here