@ -197,18 +197,28 @@ all the necessary escaping for you. If you use an ampersand as part of
@@ -197,18 +197,28 @@ all the necessary escaping for you. If you use an ampersand as part of
an HTML entity, it remains unchanged; otherwise it will be translated
into <code>&amp;</code>.</p>
<p>Markdown 允許你直接使用這些符號,但是你要小心跳脫字元的使用,如果你是在
HTML 實體中使用 <code>&</code> 符號的話,它不會被轉換,而在其它情形下,它則會被轉換
成 <code>&amp;</code></p>
<p>So, if you want to include a copyright symbol in your article, you can write:</p>
<p>所以你如果要在文件中插入一個著作權的符號,你可以這樣寫:</p>
<pre><code>&copy;
</code></pre>
<p>and Markdown will leave it alone. But if you write:</p>
<p>Markdown 將不會對這段文字做修改,但是如果你這樣寫:</p>
<pre><code>AT&T
</code></pre>
<p>Markdown will translate it to:</p>
<p>Markdown 就會將它轉為:</p>
<pre><code>AT&amp;T
</code></pre>
@ -216,11 +226,17 @@ into <code>&amp;</code>.</p>
@@ -216,11 +226,17 @@ into <code>&amp;</code>.</p>
angle brackets as delimiters for HTML tags, Markdown will treat them as
如果你是使用 <code><</code> 符號作為 HTML 標籤使用,那 Markdown 也不會對它做任何轉換,
但是如果你是寫:</p>
<pre><code>4 < 5
</code></pre>
<p>Markdown will translate it to:</p>
<p>Markdown 將會把它轉換為:</p>
<pre><code>4 &lt; 5
</code></pre>
@ -230,6 +246,11 @@ Markdown to write about HTML code. (As opposed to raw HTML, which is a
@@ -230,6 +246,11 @@ Markdown to write about HTML code. (As opposed to raw HTML, which is a
terrible format for writing about HTML syntax, because every single <code><</code>
and <code>&</code> in your example code needs to be escaped.)</p>
(和 HTML 相對而言, HTML 語法中,你要把所有的 <code><</code> 和 <code>&</code> 都轉換為 HTML 實體,
你才能再 HTML 文件裡面寫出 HTML code)</p>
<hr/>
<h2id="block">Block Elements</h2>
@ -241,20 +262,34 @@ by one or more blank lines. (A blank line is any line that looks like a
@@ -241,20 +262,34 @@ 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.</p>
<p>一個段落是由一個或以上的連接的行句組成,而兩個以上的空行則會切分出不同的段落
(空行的定義是顯示上看起來像是空行,就被視為空行,例如有一行只有空白和 tab,
那該行也會被視為空行),一般的段落不需要用空白或斷行縮排。</p>
<p>The implication of the "one or more consecutive lines of text" rule is
that Markdown supports "hard-wrapped" text paragraphs. This differs
significantly from most other text-to-HTML formatters (including Movable
Type's "Convert Line Breaks" option) which translate every line break
character in a paragraph into a <code><br /></code> tag.</p>
<p>「一個或以上的連接的行句組成」這句其實暗示了 Markdow 允許段落內的強迫斷行,
這個特性和其他大部分的 text-to-HTML 格式不一樣(包括 MovableType 的
"Convert Line Breaks" 選項),其它的格式會把每個斷行都轉成 <code><br /></code> 標籤。</p>
<p>When you <em>do</em> want to insert a <code><br /></code> break tag using Markdown, you
end a line with two or more spaces, then type return.</p>
<p>Markdown supports two styles of headers, <ahref="http://docutils.sourceforge.net/mirror/setext.html">Setext</a> and <ahref="http://www.aaronsw.com/2002/atx/">atx</a>.</p>
@ -208,18 +208,28 @@ all the necessary escaping for you. If you use an ampersand as part of
@@ -208,18 +208,28 @@ all the necessary escaping for you. If you use an ampersand as part of
an HTML entity, it remains unchanged; otherwise it will be translated
into <code>&amp;</code>.</p>
<p>Markdown 允許你直接使用這些符號,但是你要小心跳脫字元的使用,如果你是在
HTML 實體中使用 <code>&</code> 符號的話,它不會被轉換,而在其它情形下,它則會被轉換
成 <code>&amp;</code></p>
<p>So, if you want to include a copyright symbol in your article, you can write:</p>
<p>所以你如果要在文件中插入一個著作權的符號,你可以這樣寫:</p>
<pre><code>&copy;
</code></pre>
<p>and Markdown will leave it alone. But if you write:</p>
<p>Markdown 將不會對這段文字做修改,但是如果你這樣寫:</p>
<pre><code>AT&T
</code></pre>
<p>Markdown will translate it to:</p>
<p>Markdown 就會將它轉為:</p>
<pre><code>AT&amp;T
</code></pre>
@ -227,11 +237,17 @@ into <code>&amp;</code>.</p>
@@ -227,11 +237,17 @@ into <code>&amp;</code>.</p>
angle brackets as delimiters for HTML tags, Markdown will treat them as
如果你是使用 <code><</code> 符號作為 HTML 標籤使用,那 Markdown 也不會對它做任何轉換,
但是如果你是寫:</p>
<pre><code>4 < 5
</code></pre>
<p>Markdown will translate it to:</p>
<p>Markdown 將會把它轉換為:</p>
<pre><code>4 &lt; 5
</code></pre>
@ -241,6 +257,11 @@ Markdown to write about HTML code. (As opposed to raw HTML, which is a
@@ -241,6 +257,11 @@ Markdown to write about HTML code. (As opposed to raw HTML, which is a
terrible format for writing about HTML syntax, because every single <code><</code>
and <code>&</code> in your example code needs to be escaped.)</p>
(和 HTML 相對而言, HTML 語法中,你要把所有的 <code><</code> 和 <code>&</code> 都轉換為 HTML 實體,
你才能再 HTML 文件裡面寫出 HTML code)</p>
<hr/>
<h2id="block">Block Elements</h2>
@ -252,20 +273,34 @@ by one or more blank lines. (A blank line is any line that looks like a
@@ -252,20 +273,34 @@ 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.</p>
<p>一個段落是由一個或以上的連接的行句組成,而兩個以上的空行則會切分出不同的段落
(空行的定義是顯示上看起來像是空行,就被視為空行,例如有一行只有空白和 tab,
那該行也會被視為空行),一般的段落不需要用空白或斷行縮排。</p>
<p>The implication of the "one or more consecutive lines of text" rule is
that Markdown supports "hard-wrapped" text paragraphs. This differs
significantly from most other text-to-HTML formatters (including Movable
Type's "Convert Line Breaks" option) which translate every line break
character in a paragraph into a <code><br /></code> tag.</p>
<p>「一個或以上的連接的行句組成」這句其實暗示了 Markdow 允許段落內的強迫斷行,
這個特性和其他大部分的 text-to-HTML 格式不一樣(包括 MovableType 的
"Convert Line Breaks" 選項),其它的格式會把每個斷行都轉成 <code><br /></code> 標籤。</p>
<p>When you <em>do</em> want to insert a <code><br /></code> break tag using Markdown, you
end a line with two or more spaces, then type return.</p>
<p>Markdown supports two styles of headers, <ahref="http://docutils.sourceforge.net/mirror/setext.html">Setext</a> and <ahref="http://www.aaronsw.com/2002/atx/">atx</a>.</p>