diff --git a/syntax.md b/syntax.md index 41146fd..2fc7ce0 100644 --- a/syntax.md +++ b/syntax.md @@ -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: 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: If list items are separated by blank lines, Markdown will wrap the items in `
` tags in the HTML output. For example, this input: +如果清單項目間用空行分開, Markdown 會把項目的內容在輸出時用 `
` +標籤包起來,舉例來說: + * Bird * Magic will turn into: +會被轉換為: +
Bird
Magic
@@ -581,11 +608,16 @@ to be indented *twice* -- 8 spaces or two tabs:
It's worth noting that it's possible to trigger an ordered list by
accident, by writing something like this:
+當然,項目清單很可能會不小心產生,像是下面這樣的寫法:
+
1986. What a great season.
In other words, a *number-period-space* sequence at the beginning of a
line. To avoid this, you can backslash-escape the period:
+換句話說,也就是在行首出現 *數字-句點-空白* ,要避免這樣的狀況,你
+可以在句點前面加上反斜線。
+
1986\. What a great season.