markdown Usage
#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
######六级标题
**加粗**
*斜体*
~~删除线~~
[网址链接](www.google.com)
添加图片
![alt](http://edu.yuhua.gov.cn/yey2/t2/201211/W020121112691543225302.jpg)
列表(*后面有空格)
* One
* two
数字列表
1. One
2. two
高亮文本
`alert(hello)`;
`print(“hello”);`
引用文本
> That is pulled out like this
> from the text my post.
代码(去掉双引号)
"```bash"
public class Hello{
public static void main(String[] args){
System.out.println("helloWorld");
}
}
"```"
分割线
------