转自 https://en.wikipedia.org/wiki/Markdown#Example
英文版本 - http://daringfireball.net/projects/markdown/syntax
繁体版本 - http://markdown.tw/
简体版本 - http://www.appinn.com/markdown/
好用的Markdown编辑器一览 - http://www.williamlong.info/archives/4319.html
Markdown在线编辑器
1. http://dillinger.io/
2. https://markable.in/
Windows 平台 - MarkdownPad(http://www.markdownpad.com/) 一款全功能的编辑器,被很多人称赞为windows 平台最好用的markdown编辑器
优化Markdown在Notepad++中的使用体验
1. http://www.jianshu.com/p/cdb42773fffe
2. http://xuhehuan.com/2237.html
text using Markdown syntax | the corresponding HTML produced by a Markdown processor | the text viewed in a browser |
---|---|---|
Heading
=======
Sub-heading
-----------
### Another deeper heading
Paragraphs are separated
by a blank line.
Leave 2 spaces at the end of a line to do a
line break
Text attributes *italic*, **bold**,
`monospace`, ~~strikethrough~~ .
Shopping list:
* apples
* oranges
* pears
Numbered list:
1. apples
2. oranges
3. pears
The rain---not the reign---in
Spain.
A [link](http://example.com).
|
<h1>Heading</h1>
<h2>Sub-heading</h2>
<h3>Another deeper heading</h3>
<p>Paragraphs are separated
by a blank line.</p>
<p>Leave 2 spaces at the end of a line to do a<br />
line break</p>
<p>Text attributes <em>italic</em>, <strong>bold</strong>,
<code>monospace</code>, <s>strikethrough</s>.</p>
<p>Shopping list:</p>
<ul>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>
<p>Numbered list:</p>
<ol>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ol>
<p>The rain—not the
reign—in Spain.</p>
<p>A <a href="http://example.com">link</a>.</p>
|
Paragraphs are separated by a blank line. Leave 2 spaces at the end of a line to do a Text attributes italic, bold, Shopping list:
Numbered list:
The rain—not the reign—in Spain. A link. |