这是 Markdown 语法的快速参考备忘单。
# h1
## h2
### h3
#### h4
##### h5
###### h6
Header 1
========
Header 2
--------
> 这是一个
> 块引用
>
> > 嵌套
> > 块引用
* Item 1
* Item 2
* item 3a
* item 3b
或者
- Item 1
- Item 2
或者
+ Item 1
+ Item 2
或者
- [ ] Checkbox off
- [x] Checkbox on
1. Item 1
2. Item 2
a. item 3a
b. item 3b
[link](http://google.com)
[link][google]
[google]: http://google.com
<http://google.com>
*斜体*
_斜体_
**粗体**
__粗体__
`内联代码`
~~删除~~
连字符
---
星号
***
下划线
___
```javascript
console.log("This is a block code")
```
~~~css
.button { border: none; }
~~~
4 空格缩进做一个代码块
`Inline code` 周围有反引号
| 左栏 | 中间栏 | 右栏 |
|:------------|:-------------:|-------------:|
| 单元格 1 | 居中 | $1600 |
| 单元格 2 | 单元格 3 | $12 |
简单的风格
左栏 | 中间栏 | 右栏
:----------:|:-------------:|:-----------:
单元格 1 | 居中 | $1600
单元格 2 | 单元格 3 | $12
Markdown 表格生成器:tableconvert.com


[](https://github.com/)
[](link_url)
![alt text][logo]
[logo]: /images/logo.png "Logo Title"
字符 | 转义 | 描述 |
---|---|---|
\ | \\ | backslash 反斜杠 |
` | \` | backtick 反引号 |
* | \* | asterisk 星号 |
_ | \_ | underscore 下划线 |
{} | \{} | curly braces 花括号 |
[] | \[] | square brackets 方括号 |
() | \() | parentheses 圆括号 |
# | \# | hash mark 哈希标记 |
+ | \+ | plus sign 加号 |
- | \- | minus sign (hyphen) 减号(连字符) |
. | \. | dot 点 |
! | \! | exclamation mark 感叹号 |