--- language: markdown contributors: - ["Dan Turkel", "http://danturkel.com/"] translators: - ["Fangzhou Chen"] filename: markdown.md lang: zh-cn --- Markdown 由 John Gruber 于 2004年创立. 它旨在成为一门容易读写的语法结构,并可以便利地转换成HTML(以及其他很多)格式。 欢迎您多多反馈以及分支和请求合并。 ``` # 这是一个

## 这是一个

### 这是一个

#### 这是一个

##### 这是一个

###### 这是一个
这是一个 h1 ============= 这是一个 h2 ------------- *此文本为斜体。* _此文本也是。_ **此文本为粗体。** __此文本也是__ ***此文本是斜体加粗体。*** **_或者这样。_** *__这个也是!__* ~~此文本为删除线效果。~~ 这是第一段落. 这句话在同一个段落里,好玩么? 现在我是第二段落。 这句话也在第二段落! 这句话在第三段落! 此段落结尾有两个空格(选中以显示)。 上文有一个
> 这是一个段落引用. 你可以 > 手动断开你的句子,然后在每句句子前面添加 “>” 字符。或者让你的句子变得很长,以至于他们自动得断开。 > 只要你的文字以“>” 字符开头,两种方式无异。 > 你也对文本进行 >> 多层引用 > 这多机智啊! * 项目 * 项目 * 另一个项目 或者 + 项目 + 项目 + 另一个项目 或者 - 项目 - 项目 - 最后一个项目 1. 项目一 2. 项目二 3. 项目三 1. 项目一 1. 项目二 1. 项目三 1. 项目一 2. 项目二 3. 项目三 * 子项目 * 子项目 4. 项目四 This is code So is this my_array.each do |item| puts item end John didn't even know what the `go_to()` function did! \`\`\`ruby def foobar puts "Hello world!" end \`\`\` <-- The above text doesn't require indenting, plus Github will use syntax highlighting of the language you specify after the ``` --> *** --- - - - **************** [Click me!](http://test.com/) [Click me!](http://test.com/ "Link to Test.com") [Go to music](/music/). [Click this link][link1] for more info about it! [Also check out this link][foobar] if you want to. [link1]: http://test.com/ "Cool!" [foobar]: http://foobar.biz/ "Alright!" [This][] is a link. [this]: http://thisisalink.com/ ![This is hover-text (alt text) for my image](http://imgur.com/myimage.jpg "An optional title") ![This is the hover-text.][myimage] [myimage]: relative/urls/cool/image.jpg "if you need a title, it's here" is equivalent to [http://testwebsite.com/](http://testwebsite.com/) I want to type *this text surrounded by asterisks* but I don't want it to be in italics, so I do this: \*this text surrounded by asterisks\*. | Col1 | Col2 | Col3 | | :----------- | :------: | ------------: | | Left-aligned | Centered | Right-aligned | | blah | blah | blah | Col 1 | Col2 | Col3 :-- | :-: | --: Ugh this is so ugly | make it | stop ``` For more info, check out John Gruber's official post of syntax [here](http://daringfireball.net/projects/markdown/syntax) and Adam Pritchard's great cheatsheet [here](https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet).