@ -40,6 +40,10 @@ a blank line -- a line containing nothing but spaces or tabs is
@@ -40,6 +40,10 @@ a blank line -- a line containing nothing but spaces or tabs is
considered blank.) Normal paragraphs should not be indented with
spaces or tabs.
一個段落是由一個以上的連接的行句組成,而一個以上的空行則會切分出不同的段落
(空行的定義是顯示上看起來像是空行,就被視為空行,例如有一行只有空白和 tab,
那該行也會被視為空行),一般的段落不需要用空白或斷行縮排。
Markdown offers two styles of headers: *Setext* and *atx*.
Setext-style headers for `<h1>` and `<h2>` are created by
"underlining" with equal signs (`=`) and hyphens (`-`), respectively.
@ -47,8 +51,14 @@ To create an atx-style header, you put 1-6 hash marks (`#`) at the
@@ -47,8 +51,14 @@ To create an atx-style header, you put 1-6 hash marks (`#`) at the
beginning of the line -- the number of hashes equals the resulting
HTML header level.
Markdown 支援兩種標題的語法,[Setext] [1] 和 [atx] [2] 形式。
Setext 形式是用底線的形式,利用 `=` (最高階標題)和 `-` (第二階標題),
Atx 形式在行首插入 1 到 6 個 `#` ,對應到標題 1 到 6 階。
Blockquotes are indicated using email-style '`>`' angle brackets.
Markdown uses asterisks and underscores to indicate spans of emphasis.
Markdown 使用星號和底線來標記需要強調的區段。
Markdown:
Some of these words *are emphasized*.
@ -126,24 +140,33 @@ Unordered (bulleted) lists use asterisks, pluses, and hyphens (`*`,
@@ -126,24 +140,33 @@ Unordered (bulleted) lists use asterisks, pluses, and hyphens (`*`,
`+`, and `-`) as list markers. These three markers are
interchangable; this:
無序清單使用星號、加號和減號來做為清單的項目標記,這些符號是都可以使用的,
使用星號:
* Candy.
* Gum.
* Booze.
this:
加號:
+ Candy.
+ Gum.
+ Booze.
and this:
和減號
- Candy.
- Gum.
- Booze.
all produce the same output:
都會輸出:
<ul>
<li>Candy.</li>
<li>Gum.</li>
@ -153,6 +176,8 @@ all produce the same output:
@@ -153,6 +176,8 @@ all produce the same output:
Ordered (numbered) lists use regular numbers, followed by periods, as
list markers:
有序的清單則是使用一般的數字接著一個英文句點作為項目標記:
1. Red
2. Green
3. Blue
@ -169,6 +194,9 @@ If you put blank lines between items, you'll get `<p>` tags for the
@@ -169,6 +194,9 @@ If you put blank lines between items, you'll get `<p>` tags for the
list item text. You can create multi-paragraph list items by indenting
@ -260,7 +260,7 @@ by one or more blank lines. (A blank line is any line that looks like a
@@ -260,7 +260,7 @@ by one or more blank lines. (A blank line is any line that looks like a
blank line -- a line containing nothing but spaces or tabs is considered
blank.) Normal paragraphs should not be indented with spaces or tabs.