Hello All

Hello world, new github blog;

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

这是一个引用

引用中的引用

这是一个超链接

下面是一个list:

  • 第一条
  • 第二条
  • 第三条

斜体还是斜体粗+斜粗体

后面是代码-> something.excute(); <– 前面是代码

下面是一段代码:

1
2
3
4
5
6
# Fibonacci series:
# the sum of two elements defines the next
a, b = 0, 1
while b < 10:
    print b
    a, b = b, a+b

最后来一张八爪萌猫大图:

全文完整代 markdown 代码如下:

Hello world, new github blog;

#一级标题
##二级标题
###三级标题
####四级标题
#####五级标题
######六级标题

> 这是一个引用
>> 引用中的引用

[这是一个超链接](http://bitdewy.github.com)

下面是一个list:

- 第一条
- 第二条
- 第三条

_斜体_、*还是斜体*、***粗+斜***、**粗体**

后面是代码-> `something.excute();` <- 前面是代码

下面是一段代码:

``` python
# Fibonacci series:
# the sum of two elements defines the next
a, b = 0, 1
while b < 10:
    print b
    a, b = b, a+b
```

最后来一张八爪萌猫大图:

<!-- more -->
![](http://octodex.github.com/images/snowoctocat.jpg)

Comments