forked from riku/Markdown-Syntax-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.html
299 lines (210 loc) · 10.5 KB
/
basic.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Markdown 语法说明(简体中文版)</title>
<link rel="stylesheet" media="all" href="Han/han.min.css">
<link rel="stylesheet" media="all" href="stylesheets/main.css">
</head>
<body>
<div class="wikistyle">
<p><strong>声明:</strong> 这份文档派生(fork)于<a href="http://markdown.tw/">繁体中文版</a>,在此基础上进行了繁体转简体工作,并进行了适当的润色。此文档用 Markdown 语法编写,你可以到这里<a href="http://gitcafe.com/riku/Markdown-Syntax-CN/blob/master/basics.md">查看它的源文件</a>。「繁体中文版的原始文件可以<a href="https://github.com/othree/markdown-syntax-zhtw/blob/master/basics.md">查看这里</a>」--By @<a href="http://twitter.com/riku">riku</a> / 本项目托管于 <a href="http://gitcafe.com/riku/Markdown-Syntax-CN">GitCafe</a></p>
<p><strong>注:</strong> 本项目同时也托管于 <a href="https://github.com/riku/Markdown-Syntax-CN">Github</a>上,请通过 fork+pull request 方式来帮忙改进本项目。</p>
<h1>Markdown: Basics (快速入门) / (<a href="./index.html">点击查看完整语法说明</a>)</h1>
<h2>Getting the Gist of Markdown's Formatting Syntax</h2>
<p>此页提供了 Markdown 的简单概念, <a href="http://gitcafe.com/riku/Markdown-Syntax-CN/blob/master/syntax.md" title="Markdown Syntax">语法说明</a> 页提供了完整详细的文档,说明了每项功能。但是 Markdown 其实很简单就可以上手,此页文档提供了一些范例,并且每个范例都会提供输出的 HTML 结果。</p>
<p>其实直接试试看也是一个很不错的方法, <a href="http://daringfireball.net/projects/markdown/dingus" title="Markdown Dingus">Dingus</a> 是一个网页应用程序,你可以把自已编写的 Markdown 文档转成 XHTML。</p>
<h2>段落、标题、区块代码</h2>
<p>一个段落是由一个以上的连接的行句组成,而一个以上的空行则会划分出不同的段落(空行的定义是显示上看起来像是空行,就被视为空行,例如有一行只有空白和 tab,那该行也会被视为空行),一般的段落不需要用空白或换行缩进。</p>
<p>Markdown 支持两种标题的语法,<a href="http://docutils.sourceforge.net/mirror/setext.html">Setext</a> 和 <a href="http://www.aaronsw.com/2002/atx/">atx</a> 形式。Setext 形式是用底线的形式,利用 <code>=</code> (最高阶标题)和 <code>-</code> (第二阶标题),Atx 形式在行首插入 1 到 6 个 <code>#</code> ,对应到标题 1 到 6 阶。</p>
<p>区块引用则使用 email 形式的 '<code>></code>' 角括号。</p>
<p>Markdown 语法:</p>
<pre><code>A First Level Header
====================
A Second Level Header
---------------------
Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.
The quick brown fox jumped over the lazy
dog's back.
### Header 3
> This is a blockquote.
>
> This is the second paragraph in the blockquote.
>
> ## This is an H2 in a blockquote
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><h1>A First Level Header</h1>
<h2>A Second Level Header</h2>
<p>Now is the time for all good men to come to
the aid of their country. This is just a
regular paragraph.</p>
<p>The quick brown fox jumped over the lazy
dog's back.</p>
<h3>Header 3</h3>
<blockquote>
<p>This is a blockquote.</p>
<p>This is the second paragraph in the blockquote.</p>
<h2>This is an H2 in a blockquote</h2>
</blockquote>
</code></pre>
<h3>修辞和强调</h3>
<p>Markdown 使用星号和底线来标记需要强调的区段。</p>
<p>Markdown 语法:</p>
<pre><code>Some of these words *are emphasized*.
Some of these words _are emphasized also_.
Use two asterisks for **strong emphasis**.
Or, if you prefer, __use two underscores instead__.
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>Some of these words <em>are emphasized</em>.
Some of these words <em>are emphasized also</em>.</p>
<p>Use two asterisks for <strong>strong emphasis</strong>.
Or, if you prefer, <strong>use two underscores instead</strong>.</p>
</code></pre>
<h2>列表</h2>
<p>无序列表使用星号、加号和减号来做为列表的项目标记,这些符号是都可以使用的,使用星号:</p>
<pre><code>* Candy.
* Gum.
* Booze.
</code></pre>
<p>加号:</p>
<pre><code>+ Candy.
+ Gum.
+ Booze.
</code></pre>
<p>和减号</p>
<pre><code>- Candy.
- Gum.
- Booze.
</code></pre>
<p>都会输出 HTML 为:</p>
<pre><code><ul>
<li>Candy.</li>
<li>Gum.</li>
<li>Booze.</li>
</ul>
</code></pre>
<p>有序的列表则是使用一般的数字接着一个英文句点作为项目标记:</p>
<pre><code>1. Red
2. Green
3. Blue
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><ol>
<li>Red</li>
<li>Green</li>
<li>Blue</li>
</ol>
</code></pre>
<p>如果你在项目之间插入空行,那项目的内容会用 <code><p></code> 包起来,你也可以在一个项目内放上多个段落,只要在它前面缩排 4 个空白或 1 个 tab 。</p>
<pre><code>* A list item.
With multiple paragraphs.
* Another item in the list.
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><ul>
<li><p>A list item.</p>
<p>With multiple paragraphs.</p></li>
<li><p>Another item in the list.</p></li>
</ul>
</code></pre>
<h3>链接</h3>
<p>Markdown 支援两种形式的链接语法: <em>行内</em> 和 <em>参考</em> 两种形式,两种都是使用角括号来把文字转成连结。</p>
<p>行内形式是直接在后面用括号直接接上链接:</p>
<pre><code>This is an [example link](http://example.com/).
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>This is an <a href="http://example.com/">
example link</a>.</p>
</code></pre>
<p>你也可以选择性的加上 title 属性:</p>
<pre><code>This is an [example link](http://example.com/ "With a Title").
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>This is an <a href="http://example.com/" title="With a Title">
example link</a>.</p>
</code></pre>
<p>参考形式的链接让你可以为链接定一个名称,之后你可以在文件的其他地方定义该链接的内容:</p>
<pre><code>I get 10 times more traffic from [Google][1] than from
[Yahoo][2] or [MSN][3].
[1]: http://google.com/ "Google"
[2]: http://search.yahoo.com/ "Yahoo Search"
[3]: http://search.msn.com/ "MSN Search"
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>I get 10 times more traffic from <a href="http://google.com/"
title="Google">Google</a> than from <a href="http://search.yahoo.com/"
title="Yahoo Search">Yahoo</a> or <a href="http://search.msn.com/"
title="MSN Search">MSN</a>.</p>
</code></pre>
<p>title 属性是选择性的,链接名称可以用字母、数字和空格,但是不分大小写:</p>
<pre><code>I start my morning with a cup of coffee and
[The New York Times][NY Times].
[ny times]: http://www.nytimes.com/
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>I start my morning with a cup of coffee and
<a href="http://www.nytimes.com/">The New York Times</a>.</p>
</code></pre>
<h3>图片</h3>
<p>图片的语法和链接很像。</p>
<p>行内形式(title 是选择性的):</p>
<pre><code>![alt text](/path/to/img.jpg "Title")
</code></pre>
<p>参考形式:</p>
<pre><code>![alt text][id]
[id]: /path/to/img.jpg "Title"
</code></pre>
<p>上面两种方法都会输出 HTML 为:</p>
<pre><code><img src="/path/to/img.jpg" alt="alt text" title="Title" />
</code></pre>
<h3>代码</h3>
<p>在一般的段落文字中,你可以使用反引号 <code>`</code> 来标记代码区段,区段内的 <code>&</code>、<code><</code> 和 <code>></code> 都会被自动的转换成 HTML 实体,这项特性让你可以很容易的在代码区段内插入 HTML 码:</p>
<pre><code>I strongly recommend against using any `<blink>` tags.
I wish SmartyPants used named entities like `&mdash;`
instead of decimal-encoded entites like `&#8212;`.
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>I strongly recommend against using any
<code>&lt;blink&gt;</code> tags.</p>
<p>I wish SmartyPants used named entities like
<code>&amp;mdash;</code> instead of decimal-encoded
entites like <code>&amp;#8212;</code>.</p>
</code></pre>
<p>如果要建立一个已经格式化好的代码区块,只要每行都缩进 4 个空格或是一个 tab 就可以了,而 <code>&</code>、<code><</code> 和 <code>></code> 也一样会自动转成 HTML 实体。</p>
<p>Markdown 语法:</p>
<pre><code>If you want your page to validate under XHTML 1.0 Strict,
you've got to put paragraph tags in your blockquotes:
<blockquote>
<p>For example.</p>
</blockquote>
</code></pre>
<p>输出 HTML 为:</p>
<pre><code><p>If you want your page to validate under XHTML 1.0 Strict,
you've got to put paragraph tags in your blockquotes:</p>
<pre><code>&lt;blockquote&gt;
&lt;p&gt;For example.&lt;/p&gt;
&lt;/blockquote&gt;
</code></pre>
</code></pre>
</div>
<div id="comments">
<div id="disqus_thread"></div>
<script type="text/javascript">
/* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */
var disqus_shortname = 'wowubuntu'; // required: replace example with your forum shortname
/* * * DON'T EDIT BELOW THIS LINE * * */
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://' + disqus_shortname + '.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript>
<a href="http://disqus.com" class="dsq-brlink">blog comments powered by <span class="logo-disqus">Disqus</span></a>
</div>
</body>
</html>