Markdown用法

标题

1
2
3
4
5
# 一级标题

## 二级标题

### 三级标题

列表

1
2
3
4
5
6
7
8
无序列表
* 1
* 2
* 3
有序列表
1. 有序列表1
2. 有序列表2
3. 有序列表3
  • 1
  • 2
  • 3
  1. 有序列表1
  2. 有序列表2
  3. 有序列表3

引用

1
> 这是一个引用

这是一个引用

图片与链接

1
2
3
4
图片为:![CuiHp](http://cuihp.top/images/icon.png)

链接为:[谁动了我的代码](http://cuihp.top)
<http://cuihp.top>

图片为:CuiHp

链接为:谁动了我的代码
http://cuihp.top

表格

1
2
3
4
5
| Tables        | Tables        | Tables  |
| ------------- |:-------------:| -------:|
| a | a | a |
| b | b | b |
| c | c | c |
Tables Tables Tables
a a a
b b b
c c c

代码

1
Use the `printf()` function.

Use the printf() function.

分割线

1
***

强调

1
2
3
4
5
6
7
8
9
*single asterisks*

_single underscores_

**double asterisks**

__double underscores__
反斜杠
\*literal asterisks\*

single asterisks

single underscores

double asterisks

double underscores

反斜杠

*literal asterisks*