这是H1
这是H2
这是H3
这是一段引用
这是引用内的引用哈哈
无序列表
1
2
3
| * Red
* Green
* Blue
|
有序列表
- Bird
- McHale
- Parish
1
2
3
| 1. Bird
2. McHale
3. Parish
|
代码
1
2
3
4
5
| System.out.println("hello");
for(int i=0; i<a.size(); i++){
System.out.println("test");
}
|
1
2
3
4
5
6
7
8
| ~~~java
System.out.println("hello");
for(int i=0; i<a.size(); i++){
System.out.println("test");
}
~~~
PS: ~~~替换为```
|
代码嵌入文字
Use the printf()
function.
1
| Use the `printf()` function.
|
分割线
文字链接
点我
1
| [点我](http://www.baidu.com "baidu title")
|
foo
1
| [foo](http://example.com/ "Optional Title Here")
|
隐式链接标记
I get 10 times more traffic from Google than from
Yahoo or MSN.
1
2
3
4
5
6
| I get 10 times more traffic from [Google][] than from
[Yahoo][] or [MSN][].
[google]: http://google.com/ "Google"
[yahoo]: http://search.yahoo.com/ "Yahoo Search"
[msn]: http://search.msn.com/ "MSN Search"
|
参考式链接
I get 10 times more traffic from Google than from
Yahoo or MSN.
1
2
3
4
5
6
| 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"
|
强调
single asterisks
unfriggingbelievable
图片
1
| ![](http://www.baidu.com/img/bdlogo.png)
|
图片链接
1
| [![](http://www.baidu.com/img/bdlogo.png)](http://www.baidu.com)
|