@ -494,8 +494,13 @@ List markers typically start at the left margin, but may be indented by
@@ -494,8 +494,13 @@ List markers typically start at the left margin, but may be indented by
up to three spaces. List markers must be followed by one or more spaces
or a tab.
清單項目標記通常是放在最左邊,但是其實也可以縮排,最多三個空白,項目標記後面
則一定要接著至少一個空白或 tab。
To make lists look nice, you can wrap items with hanging indents:
要讓清單看起來更漂亮,你可以把內容用固定的縮排整理好:
* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
viverra nec, fringilla in, laoreet vitae, risus.
@ -504,6 +509,8 @@ To make lists look nice, you can wrap items with hanging indents:
@@ -504,6 +509,8 @@ To make lists look nice, you can wrap items with hanging indents:
But if you want to be lazy, you don't have to:
但是如果你很懶,那也不一定需要:
* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
viverra nec, fringilla in, laoreet vitae, risus.
@ -513,11 +520,16 @@ But if you want to be lazy, you don't have to:
@@ -513,11 +520,16 @@ But if you want to be lazy, you don't have to:
If list items are separated by blank lines, Markdown will wrap the
items in `<p>` tags in the HTML output. For example, this input:
如果清單項目間用空行分開, Markdown 會把項目的內容在輸出時用 `<p>`
標籤包起來,舉例來說:
* Bird
* Magic
will turn into:
會被轉換為:
<ul>
<li>Bird</li>
<li>Magic</li>
@ -525,12 +537,16 @@ will turn into:
@@ -525,12 +537,16 @@ will turn into:
But this:
但是這個:
* Bird
* Magic
will turn into:
會被轉換為:
<ul>
<li><p>Bird</p></li>
<li><p>Magic</p></li>
@ -540,6 +556,9 @@ List items may consist of multiple paragraphs. Each subsequent
@@ -540,6 +556,9 @@ List items may consist of multiple paragraphs. Each subsequent
paragraph in a list item must be indented by either 4 spaces
or one tab:
清單項目可以包含多個段落,每個項目下的端落都必須要縮排 4 個空白或
是一個 tab :
1. This is a list item with two paragraphs. Lorem ipsum dolor
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
mi posuere lectus.
@ -554,6 +573,9 @@ It looks nice if you indent every line of the subsequent
@@ -554,6 +573,9 @@ It looks nice if you indent every line of the subsequent
paragraphs, but here again, Markdown will allow you to be
lazy:
如果你每行都有縮排,看起來會看好很多,當然,再次的,如果你很懶惰,
Markdown 也允許:
* This is a list item with two paragraphs.
This is the second paragraph in the list item. You're