|
|
@ -1025,31 +1025,44 @@ To indicate a span of code, wrap it with backtick quotes (`` ` ``). |
|
|
|
Unlike a pre-formatted code block, a code span indicates code within a |
|
|
|
Unlike a pre-formatted code block, a code span indicates code within a |
|
|
|
normal paragraph. For example: |
|
|
|
normal paragraph. For example: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
如果要標記一小段行內程式碼,你可以用反引號把它包起來 (`` ` ``),例如: |
|
|
|
|
|
|
|
|
|
|
|
Use the `printf()` function. |
|
|
|
Use the `printf()` function. |
|
|
|
|
|
|
|
|
|
|
|
will produce: |
|
|
|
will produce: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
會產生: |
|
|
|
|
|
|
|
|
|
|
|
<p>Use the <code>printf()</code> function.</p> |
|
|
|
<p>Use the <code>printf()</code> function.</p> |
|
|
|
|
|
|
|
|
|
|
|
To include a literal backtick character within a code span, you can use |
|
|
|
To include a literal backtick character within a code span, you can use |
|
|
|
multiple backticks as the opening and closing delimiters: |
|
|
|
multiple backticks as the opening and closing delimiters: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
如果要在程式碼區段內插入反引號,你可以用多個反引號來開啟和結束程式碼區段: |
|
|
|
|
|
|
|
|
|
|
|
``There is a literal backtick (`) here.`` |
|
|
|
``There is a literal backtick (`) here.`` |
|
|
|
|
|
|
|
|
|
|
|
which will produce this: |
|
|
|
which will produce this: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
這段語法會產生: |
|
|
|
|
|
|
|
|
|
|
|
<p><code>There is a literal backtick (`) here.</code></p> |
|
|
|
<p><code>There is a literal backtick (`) here.</code></p> |
|
|
|
|
|
|
|
|
|
|
|
The backtick delimiters surrounding a code span may include spaces -- |
|
|
|
The backtick delimiters surrounding a code span may include spaces -- |
|
|
|
one after the opening, one before the closing. This allows you to place |
|
|
|
one after the opening, one before the closing. This allows you to place |
|
|
|
literal backtick characters at the beginning or end of a code span: |
|
|
|
literal backtick characters at the beginning or end of a code span: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
程式碼區段的起始和結束端都可以放入一個空白,起始端後面一個,結束端前面一個, |
|
|
|
|
|
|
|
這樣你就可以在區段的一開始就插入反引號: |
|
|
|
|
|
|
|
|
|
|
|
A single backtick in a code span: `` ` `` |
|
|
|
A single backtick in a code span: `` ` `` |
|
|
|
|
|
|
|
|
|
|
|
A backtick-delimited string in a code span: `` `foo` `` |
|
|
|
A backtick-delimited string in a code span: `` `foo` `` |
|
|
|
|
|
|
|
|
|
|
|
will produce: |
|
|
|
will produce: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
會產生: |
|
|
|
|
|
|
|
|
|
|
|
<p>A single backtick in a code span: <code>`</code></p> |
|
|
|
<p>A single backtick in a code span: <code>`</code></p> |
|
|
|
|
|
|
|
|
|
|
|
<p>A backtick-delimited string in a code span: <code>`foo`</code></p> |
|
|
|
<p>A backtick-delimited string in a code span: <code>`foo`</code></p> |
|
|
@ -1058,18 +1071,27 @@ With a code span, ampersands and angle brackets are encoded as HTML |
|
|
|
entities automatically, which makes it easy to include example HTML |
|
|
|
entities automatically, which makes it easy to include example HTML |
|
|
|
tags. Markdown will turn this: |
|
|
|
tags. Markdown will turn this: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
在程式碼區段內, `&` 和角括號都會被轉成 HTML 實體,這樣會比較容易插入 HTML 原始碼, |
|
|
|
|
|
|
|
Markdown 會把下面這段: |
|
|
|
|
|
|
|
|
|
|
|
Please don't use any `<blink>` tags. |
|
|
|
Please don't use any `<blink>` tags. |
|
|
|
|
|
|
|
|
|
|
|
into: |
|
|
|
into: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
轉為: |
|
|
|
|
|
|
|
|
|
|
|
<p>Please don't use any <code><blink></code> tags.</p> |
|
|
|
<p>Please don't use any <code><blink></code> tags.</p> |
|
|
|
|
|
|
|
|
|
|
|
You can write this: |
|
|
|
You can write this: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
你也可以這樣寫: |
|
|
|
|
|
|
|
|
|
|
|
`—` is the decimal-encoded equivalent of `—`. |
|
|
|
`—` is the decimal-encoded equivalent of `—`. |
|
|
|
|
|
|
|
|
|
|
|
to produce: |
|
|
|
to produce: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
以產生: |
|
|
|
|
|
|
|
|
|
|
|
<p><code>&#8212;</code> is the decimal-encoded |
|
|
|
<p><code>&#8212;</code> is the decimal-encoded |
|
|
|
equivalent of <code>&mdash;</code>.</p> |
|
|
|
equivalent of <code>&mdash;</code>.</p> |
|
|
|
|
|
|
|
|
|
|
|