markdown
Lists
Unordered
* Item 1* Item 2* Item 2a* Item 2b
- Item 1
- Item 2
- Item 2a
- Item 2b
Ordered
1. Item 11. Item 21. Item 31. Item 3a1. Item 3b
- Item 1
- Item 2
- Item 3
- Item 3a
- Item 3b
markdown 插入图片
Format: ![Alt Text](url)![Alt Text](/documents/images/smll_sample_image.png)![Alt Text](/documents/images/smll_sample_image.png "title")Hyperlinking Images[![Image Alt Text](/path/to/image)](path/to/linked/page)
with title
with link
Tables
First Header | Second Header------------ | -------------Content from cell 1 | Content from cell 2Content in the first column | Content in the second column
First Header | Second Header |
---|---|
Content from cell 1 | Content from cell 2 |
Content in the first column | Content in the second column |
加粗和斜体
**bold** *italic*It's very easy to make some words **bold** and other words *italic*
bold italic It's very easy to make some words bold and other words italic
Line Breaks 换行
To create a line break (<br>), end a line with two or more spaces, and then type return.This is the first line.And this is the second line.
This is the first line.
And this is the second line.
链接
You can even [link to Google!](http://google.com)
You can even link to Google!
https://www.baidu.com - automatic!
http://github.com - automatic!
GitHub
tree
+-- _config.yml+-- _drafts| +-- begin-with-the-crazy-ideas.textile| +-- on-simplicity-in-technology.markdown+-- _includes| +-- footer.html| +-- header.html+-- _layouts| +-- default.html| +-- post.html+-- _posts| +-- 2007-10-29-why-every-programmer-should-play-nethack.textile| +-- 2009-04-26-barcamp-boston-4-roundup.textile+-- _data| +-- members.yml+-- _site+-- index.html
Blockquotes
> "In a few moments he was barefoot, his stockings folded in his pockets and hiscanvas shoes dangling by their knotted laces over his shoulders and, picking apointed salt-eaten stick out of the jetsam among the rocks, he clambered downthe slope of the breakwater."
"In a few moments he was barefoot, his stockings folded in his pockets and his canvas shoes dangling by their knotted laces over his shoulders and, picking a pointed salt-eaten stick out of the jetsam among the rocks, he clambered down the slope of the breakwater."
横线
***对应html <hr>