markdown 语法
1、标题
用 #标签标示 一共是有6级 h1-h6 的 #越少标签越大
2.斜体:
用 *标签标示 变粗是用**标示
3.块 段落
是用 > 这个标示。 可以嵌套使用
4.无序列表:
是用* + 或者 -
5.连接:
Markdown中有两种方式,实现链接,分别为内联方式和引用方式。
内联方式:This is an [example link](http://example.com/).
引用方式:I get 10 times more traffic from [Google][1] than from [Yahoo][2] or [MSN][3].
[1]: http://google.com/ "Google"
[2]: http://search.yahoo.com/ "Yahoo Search"
[3]: http://search.msn.com/ "MSN Search"
6 图片(Images)
图片的处理方式和链接的处理方式,非常的类似。
内联方式:![alt text](/path/to/img.jpg "Title")
引用方式:
![alt text][i]
7.代码
大片文字需要实现代码框。使用Tab和四个空格。