主要介绍markdown的一些基本语法 markdown 的语法概述,您可以在github上的任何地方或者你自己的文件中使用markdown 语法(我感觉它类似html的标签)

标头

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

重点

1
2
3
4
5
6
7
*This text will be italic*
_This will also be italic_

**This text will be bold**
__This will also be bold__

_You **can** combine them_

清单

无序

1
2
3
4
5
6

* Item 1
* Item 2
* Item 2a
* Item 2b

有序

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

图片

1
2
![Github Logo](/images/logo.png)
Format: ![alt text](url)

链接

1
2
eg:http://github.com -automatic!
[Github](http://github.com)

块引用

1
2
3
4
5

胖虎说:
> 大熊,你真菜
> 静香是我的了!哈哈哈

内联代码

1
`<addr>` 就是用反引号