为了交作业,第一次接触Markdown,发觉挺好用的。就把常用的语法列在这里,以便查找。
1. 标题
- code:
# 这是 H1
## 这是 H2
### 这是 H3
#### 这是 H4
##### 这是 H5
###### 这是 H6 - result
这是 H1
这是 H2
这是 H3
这是 H4
这是 H5
这是 H6
2. 区块
code
>这个是区块符号result
这个是区块符号
3. 代码区块
code
这里有2个 ` 符号result
这里有2个 ` 符号
code
这里的上下都有```(无空格)
- result
这里的上下都有
4. 分割
-
code
---
result
5. 项目符号
- code
+ 项目一
+ 项目二
+ 项目三
+ 项目四
- result
- 项目一
- 项目二
- 项目三
- 项目四
6. 链接
code
<http://www.bing.com/>
result
http://www.bing.com/code
[点我](http://www.bing.com/) .
result
点我 .
7. 表格
- code
| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
- result
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |