使用markdown

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");
    }
}
"```"

分割线
------

注:所有的标记都会直接显示效果,不会显示标记符号。所以整个笔记都是写在代码里的文字,这样效果不会直接显示出来。
posted @ 2016-04-05 14:30  Taogen  阅读(153)  评论(0编辑  收藏  举报