Markdown
Table of Contents
1 Notation
空行代表段落
1.1 标题
# xxx ## xxx
1.2 引用
> xxx
*italic* **bold** _italic_ __bld__
1.3 ul
#+beginsrc markdown
2 xx
3 xx
4 xx
- xx
- xx
#+endsrc
4.1 ol
1. xx 2. xx 3. xx
[link name](http://www.lihebi.com) ![image name](http://xx.jpg) [link name][url] [url]: http://xxx.xxx
4.2 GItHub Flavored Markdown
- `dothisnow` 不会被转换为斜体
- `http://lihebi.com` 直接转换为链接
- `~~Missing~~` 删除线
- ``` 可以插入code(本来要用4个空格)
- ``` 可以使用高亮
```ruby xxx ```
4.3 table
| Left-Aligned | Center Aligned | Right Alned | | :------------ |:---------------:| -----:| | col 3 is | some wordy text | $1600 | | col 2 is | centered | $12 | | zebra stripes | are neat | $1 |
注释:
- `:` 代表对其方式,可以不要
- dash不用严格对齐
- 左右两边可以不要