Markdown is a way to style text on the web. You control the display of the document;formatting words as bold or italic,adding images,and creating lists are just a few of the things we can do with Markdown. Mostly,Markdown is just regular text with a few non-alphabetic characters thrown in,like # or *.

headers

1
2
3
# this is an <h1> tag
## this is an <h2> tag
###### this is an <h6> tag

lists

Unordered

1
2
3
4
* Item 1
* Item 2
* Item 2a
* Item 2b

Ordered

1
2
3
4
1. Item 1
2. Item 2
* Item 2a
* Item 2b


图片(Images)

1
2
![GitHub Logo](/images/logo.png)
Format: ![描述](url)

重点(emphasis)

1
2
3
4
5
* 这段文字将变成斜体 *
_ 这段文字也会变成斜体 _
** 这段文字将变成粗体 **
__ 这段文字也会变成粗体 __

1
2
[GitHub Logo](/images/logo.png)
Format: [描述](url)

引用(blockquotes)

1
2
![GitHub Logo](/images/logo.png)
Format: ![描述](url)

反斜杠 转义字符(backslash escapes)

1
2
\*hello world\*
*hello world*

Markdown procides backslash escapes for the following characters:

1
\ ` * _ {} [] () # + - . !

table

1
2
3
4
5
| 项目 | 价格 | 数量 |
| -------- | -----: | :----: |
| 计算机 | \$1600 | 5 |
| 手机 | \$12 | 12 |
| 管线 | \$1 | 234 |
项目 价格 数量
计算机 \$1600 5
手机 \$12 12
管线 \$1 234

html tag

1
2
&lt; &gt;
<>