Markdown

#Markdown–从入门到精通

#一级标题

##二级标题

###三级标题

####四级标题

#####五级标题

####无序列

  • 1
  • 2
  • 3

####有序列

  1. 1
  2. 2
  3. 3

####引用

这里是引用

####插入图片

Baidu

####插入图片

####粗体

测试斜体

测试粗体

####表格
| Tables | Are | Cool |
| ————- |:————-:| —–:|
| col 3 is | right-aligned | $1600 |
| col 2 is | centered | $12 |
| zebra stripes | are neat | $1 |

####代码

var a = 1;

Inline code and Block code

Inline code are surround by backtick key. To create a block code:

Indent each line by at least 1 tab, or 4 spaces.
var Mou = exactlyTheAppIwant; 

test2

/**
 * nth element in the fibonacci series.
 * @param n >= 0
 * @return the nth element, >= 0.
 */
function fib(n) {
    var a = 1, b = 1;
    var tmp;
    while (--n >= 0) {
        tmp = a;
        a += b;
       b = tmp;
    }
    return a;
}

document.write(fib(10));  

####分割线