From 7f2e30e9fc9f22a8a6b6336a5c69b04c956f22fd Mon Sep 17 00:00:00 2001 From: dai Date: Wed, 28 Feb 2024 16:22:58 +0900 Subject: [PATCH] Edited ja-syntax.md and README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit syntax.mdのテーブルとREADME-jaの脚注を調整しました。 --- README-ja.md | 4 +- doc/ja-syntax.md | 749 +++++++++++++++++++++++++++-------------------- 2 files changed, 435 insertions(+), 318 deletions(-) diff --git a/README-ja.md b/README-ja.md index d685125..c07dbfe 100644 --- a/README-ja.md +++ b/README-ja.md @@ -107,9 +107,9 @@ Djotは軽量なマークアップ構文です。この機能のほとんどは[ - 目標2を達成するために、参照リンクの解析をローカルにします。`[foo][bar]`または`[foo][]`のように見えるものは、`[foo]`が文書の後半で定義されているかどうかに関係なく、参照リンクとして扱われます。したがって、`[like this]`のような括弧1つだけのショートカットリンク構文は削除しなければなりません。周囲の文脈を知らなくても何がリンクであるかは常に明確でなければなりません。 -- 目標6をサポートするため、参照リンクでは大文字と小文字が区別されなくなりました。ASCIIコンテキストを超えてこれをサポートするには、すべての実装にUnicodeのCase Folding[^大注1]を組み込む必要がありますが、その必要はないようです。 +- 目標6をサポートするため、参照リンクでは大文字と小文字が区別されなくなりました。ASCIIコンテキストを超えてこれをサポートするには、すべての実装にUnicodeのCase Folding[^da1]を組み込む必要がありますが、その必要はないようです。 - [^大注1]: ケースの違い、つまり大文字小文字がばらつくときに一旦どちらかに統一化する操作、似た存在に「小文字化を行うCase Mappingがある」 + [^da1]: ケースの違い、つまり大文字小文字がばらつくときに一旦どちらかに統一化する操作、似た存在に「小文字化を行うCase Mappingがある」 - 目標8に記載されている均一性の原則の違反を避けるために、ブロック引用符 `>` の後に空白または改行が必要です: diff --git a/doc/ja-syntax.md b/doc/ja-syntax.md index 9090626..a4c0dab 100644 --- a/doc/ja-syntax.md +++ b/doc/ja-syntax.md @@ -64,7 +64,6 @@ _}not emphasized{_

*not strong *strong* - ```html

*not strong strong

``` @@ -88,14 +87,18 @@ _}not emphasized{_

[My link text](http://example.com) -

My link text

+```html +

My link text

+``` URLは複数行に分かれている場合があります。この場合改行が行われ先頭と末尾の空白は無視され行が連結されます。 [My link text](http://example.com?product_number=234234234234 234234234234) -

My link text

+```html +

My link text

+``` *参照リンク*では括弧内の宛先ではなく角括弧内の参照ラベルを使用します。これはリンクテキストの直後に置く必要があります。 @@ -103,13 +106,17 @@ URLは複数行に分かれている場合があります。この場合改行 [foo bar]: http://example.com -

My link text

+```html +

My link text

+``` 参照ラベルはドキュメント内のどこかで定義する必要があります。以下の[参照リンクの定義](#reference-link-definition)を参照してください。ただしリンクの解析は「ローカル」でありラベルが定義されているかどうかには依存しません。 [foo][bar] -

foo

+```html +

foo

+``` ラベルがない場合、リンクテキストはリンクテキストだけでなく参照ラベルとしても解釈されます: @@ -117,23 +124,27 @@ URLは複数行に分かれている場合があります。この場合改行 [My link text]: /url -

My link text

+```html +

My link text

+``` ### 画像 画像はリンクと同じように機能しますが、接頭辞 `!` が付いています。リンクと同様にインラインバリアントと参照バリアントの両方が可能です。 ![picture of a cat](cat.jpg) - + ![picture of a cat][cat] - + ![cat][] - + [cat]: feline.jpg -

picture of a cat

-

picture of a cat

-

cat

+```html +

picture of a cat

+

picture of a cat

+

cat

+``` ### 自動リンク @@ -142,8 +153,10 @@ URLは複数行に分かれている場合があります。この場合改行 -

https://pandoc.org/lua-filters - me@example.com

+```html +

https://pandoc.org/lua-filters +me@example.com

+``` URLまたはメールアドレスには改行を含めることはできません。 @@ -154,8 +167,10 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` ``Verbatim with a backtick` character`` `Verbatim with three backticks character` -

Verbatim with a backtick` character - Verbatim with three backticks character

+```html +

Verbatim with a backtick` character +Verbatim with three backticks character

+``` バックティック間の内容はVerbatimテキストとして扱われます(そこではバックスラッシュ エスケープは機能しません)。 @@ -163,45 +178,57 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` `` `foo` `` -

`foo`

+```html +

`foo`

+``` インラインとして解析されるテキストが、終了バックティック文字列に遭遇する前に終了する場合、Verbatimテキストは最後まで続きます。 `foo bar -

foo bar

+```html +

foo bar

+``` ### 強調と強い強調(Emphasis/strong) 強調されたインラインコンテンツは `_` で囲みます。強い強調は `*` で囲みます。 _emphasized text_ - + *strong emphasis* -

emphasized text

-

strong emphasis

+```html +

emphasized text

+

strong emphasis

+``` また `_` は `*` 直後に空白が続かない場合にのみ強調を開始できます。強調を閉じることができるのは、直前に空白がない場合、および開始文字と終了文字の間に区切り文字以外の文字がある場合のみです。 _ Not emphasized (spaces). _ - + ___ (not an emphasized `_` character) -

_ Not emphasized (spaces). _

-

___ (not an emphasized _ character)

+```html +

_ Not emphasized (spaces). _

+

___ (not an emphasized _ character)

+``` 強調はネスト(入れ子に)することができます: __emphasis inside_ emphasis_ -

emphasis inside emphasis

+```html +

emphasis inside emphasis

+``` 中括弧 `{` は `_` または `*` をオープナーまたはクローザーとして強制的に解釈するために使用できます。 {_ this is emphasized, despite the spaces! _} -

this is emphasized, despite the spaces!

+```html +

this is emphasized, despite the spaces!

+``` ### ハイライト(mark) @@ -209,7 +236,9 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` This is {=highlighted text=}. -

This is highlighted text.

+```html +

This is highlighted text.

+``` ### 上付きと下付き(Super/subscript) @@ -217,13 +246,17 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` H~2~O and djot^TM^ -

H2O and djotTM

+```html +

H2O and djotTM

+``` 中括弧を使用することもできますが、必須ではありません: H{~one two buckle my shoe~}O -

Hone two buckle my shoeO

+```html +

Hone two buckle my shoeO

+``` ### 挿入と取り消し線(Insert/delete) @@ -231,7 +264,9 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` My boss is {-mean-}{+nice+}. -

My boss is meannice.

+```html +

My boss is meannice.

+``` ### スマート句読点 @@ -240,20 +275,26 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` "Hello," said the spider. "'Shelob' is my name." -

“Hello,” said the spider. - “‘Shelob’ is my name.”

+```html +

“Hello,” said the spider. +“‘Shelob’ is my name.”

+``` ただし、そのヒューリスティックは中かっこを使用した引用符をオープナー `{"` またはクローザー `"}` としてマークすることでオーバーライドできます: '}Tis Socrates' season to be jolly! -

’Tis Socrates’ season to be jolly!

+```html +

’Tis Socrates’ season to be jolly!

+``` 直接引用符が必要な場合は、バックスラッシュとエスケープを使用します: 5\'11\" -

5'11"

+```html +

5'11"

+``` ピリオド3つのシーケンスは *ellipses* として解析されます。 `...` @@ -263,13 +304,17 @@ Verbatimコンテンツは、連続するバックティック文字(`` ` `` 57--33 oxen---and no sheep... -

57–33 oxen—and no sheep…

+```html +

57–33 oxen—and no sheep…

+``` より長いハイフンのシーケンスは、全角ダッシュ、半角ダッシュ、およびハイフンに分割されます。可能であれば均一に、どちらの方法でも均一性が達成できる場合は、全角ダッシュを使用することを推奨します。(つまり、4つのハイフンは2つの半角ダッシュになり、6つのハイフンは2つの半角ダッシュになります)。 a----b c------d -

a––b c——d

+```html +

a––b c——d

+``` ### 数式 @@ -279,9 +324,11 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ Pythagoras proved $$` x^n + y^n = z^n ` -

Einstein derived \(e=mc^2\). - Pythagoras proved - \[ x^n + y^n = z^n \]

+```html +

Einstein derived \(e=mc^2\). +Pythagoras proved +\[ x^n + y^n = z^n \]

+``` ### 脚注参照 @@ -291,15 +338,17 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ [^foo]: And here is the note. -

Here is the reference.1

-
-
-
    -
  1. -

    And here is the note.↩︎︎

    -
  2. -
-
+```html +

Here is the reference.1

+
+
+
    +
  1. +

    And here is the note.↩︎︎

    +
  2. +
+
+``` 脚注自体の構文については、以下の[脚注](#footnote)を参照してください。 @@ -313,9 +362,11 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ break and this is a hard\ break. -

This is a soft - break and this is a hard
- break.

+```html +

This is a soft +break and this is a hard
+break.

+``` ### コメント @@ -328,7 +379,9 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ Foo bar {% This is a comment, spanning multiple lines %} baz. -

Foo bar baz.

+```html +

Foo bar baz.

+``` ### 記号 @@ -336,7 +389,9 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ My reaction is :+1: :smiley:. -

My reaction is 👍 😃.

+```html +

My reaction is 👍 😃.

+``` ### Rawインライン @@ -344,7 +399,9 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ This is ``{=html}. -

This is .

+```html +

This is .

+``` このコンテンツは、指定された形式をレンダリングするときにそのまま渡されるように意図されていますが、それ以外の場合は無視されます。 @@ -354,7 +411,9 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ It can be helpful to [read the manual]{.big .red}. -

It can be helpful to read the manual.

+```html +

It can be helpful to read the manual.

+``` ### インライン属性 @@ -374,19 +433,25 @@ LaTeX数式を含めるには、その数式をVerbatimスパンに入れ、そ An attribute on _emphasized text_{#foo .bar .baz key="my value"} -

An attribute on emphasized text

+```html +

An attribute on emphasized text

+``` 属性指定子は「stacked」(積み重ねること)ができ、その場合は結合されます。したがって、 avant{lang=fr}{.blue} -

avant

+```html +

avant

+``` は、以下と同じです avant{lang=fr .blue} -

avant

+```html +

avant

+``` ## ブロック構文 @@ -404,15 +469,15 @@ commonmarkと同様に、ブロック構造はインライン解析の前に識 ### 見出し -見出しは1つ以上の `#` 文字シーケンスで始まり、その後に空白が続きます。 -`#` -文字の数によって見出しレベルは定義されます。次のテキストはインラインコンテンツとして解析されます。 +見出しは1つ以上の `#` 文字シーケンスで始まり、その後に空白が続きます。`#` 文字の数によって見出しレベルは定義されます。次のテキストはインラインコンテンツとして解析されます。 ## A level _two_ heading! -
-

A level two heading!

-
+```html +
+

A level two heading!

+
+``` 見出しテキストは後続の行にまたがる場合があり、その前に同じ数の `#` 文字が続く場合もあります(ただし、省略することもできます)。 @@ -424,25 +489,27 @@ commonmarkと同様に、ブロック構造はインライン解析の前に識 A paragraph, finally -
-

A heading that - takes up - three lines

-

A paragraph, finally

-
- - # A heading that - takes up - three lines - - A paragraph, finally. - -
-

A heading that - takes up - three lines

-

A paragraph, finally.

-
+```html +
+

A heading that +takes up +three lines

+

A paragraph, finally

+
+ +# A heading that +takes up +three lines + +A paragraph, finally. + +
+

A heading that +takes up +three lines

+

A paragraph, finally.

+
+``` ### 引用ブロック(Block quote) @@ -453,27 +520,31 @@ commonmarkと同様に、ブロック構造はインライン解析の前に識 > 1. with a > 2. list in it. -
-

This is a block quote.

-
    -
  1. - with a -
  2. -
  3. - list in it. -
  4. -
-
+```html +
+

This is a block quote.

+
    +
  1. +with a +
  2. +
  3. +list in it. +
  4. +
+
+``` Markdownと同様に、段落はじまり行の前を除き、引用ブロック内の通常段落行から `>` プレフィックスを省略することができます: > This is a block quote. -
-

This is a block - quote.

-
+```html +
+

This is a block +quote.

+
+``` ### リスト項目 @@ -484,15 +555,17 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック > containing a block quote -
    -
  1. -

    This is a - list item.

    -
    -

    containing a block quote

    -
    -
  2. -
+```html +
    +
  1. +

    This is a +list item.

    +
    +

    containing a block quote

    +
    +
  2. +
+``` 段落の開始行に続く段落行では、インデントが省略される場合があります: @@ -502,39 +575,41 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック Second paragraph under the list item. -
    -
  1. -

    This is a - list item.

    -

    Second paragraph under the - list item.

    -
  2. -
+```html +
    +
  1. +

    This is a +list item.

    +

    Second paragraph under the +list item.

    +
  2. +
+``` 次の基本的なタイプのリストマーカーを使用できます: - マーカー リストの種類 - ---------- -------------------------------------------------- - `-` bullet - `+` bullet - `*` bullet - `1.` 順序付き、10進数、直後にピリオド - `1)` 順序付き、10進数、直後に終わり括弧 - `(1)` 順序付き、10進数、括弧で挟む - `a.` 順序付き、アルファベット小文字、直後にピリオド - `a)` 順序付き、アルファベット小文字、直後に終わり括弧 - `(a)` 順序付き、アルファベット小文字、括弧で挟む - `A.` 順序付き、アルファベット大文字、直後にピリオド - `A)` 順序付き、アルファベット大文字、直後に終わり括弧 - `(A)` 順序付き、アルファベット大文字、括弧で挟む - `i.` 順序付き、ローマ数字小文字、直後にピリオド - `i)` 順序付き、ローマ数字小文字、直後に終わり括弧 - `(i)` 順序付き、ローマ数字小文字、括弧で挟む - `I.` 順序付き、ローマ数字大文字、直後にピリオド - `I)` 順序付き、ローマ数字大文字、直後に終わり括弧 - `(I)` 順序付き、ローマ数字大文字、括弧で挟む - `:` 定義語 - `- [ ]` タスク +| マーカー | リストの種類 | +| ------------- | -------------------------- | +| `-` | bullet | +| `+` | bullet | +| `*` | bullet | +| `1.` | 順序付き、10進数、直後にピリオド | +| `1)` | 順序付き、10進数、直後に終わり括弧 | +| `(1)` | 順序付き、10進数、括弧で挟む | +| `a.` | 順序付き、アルファベット小文字、直後にピリオド | +| `a)` | 順序付き、アルファベット小文字、直後に終わり括弧 | +| `(a)` | 順序付き、アルファベット小文字、括弧で挟む | +| `A.` | 順序付き、アルファベット大文字、直後にピリオド | +| `A)` | 順序付き、アルファベット大文字、直後に終わり括弧 | +| `(A)` | 順序付き、アルファベット大文字、括弧で挟む | +| `i.` | 順序付き、ローマ数字小文字、直後にピリオド | +| `i)` | 順序付き、ローマ数字小文字、直後に終わり括弧 | +| `(i)` | 順序付き、ローマ数字小文字、括弧で挟む | +| `I.` | 順序付き、ローマ数字大文字、直後にピリオド | +| `I)` | 順序付き、ローマ数字大文字、直後に終わり括弧 | +| `(I)` | 順序付き、ローマ数字大文字、括弧で挟む | +| `:` | 定義語 | +| `- [ ]` | タスク | 順序付きリストマーカーは、一連の任意の番号を使用できます: したがって `(xix)` および `v)` は、どちらも有効なローマ字小文字列挙マーカーであり、`v)` は有効なアルファベット小文字列挙マーカー *でも* あります。 @@ -550,12 +625,14 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック A citrus fruit. -
-
orange
-
-

A citrus fruit.

-
-
+```html +
+
orange
+
+

A citrus fruit.

+
+
+``` ### リスト @@ -566,40 +643,44 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック + bullet * bullet (style change) -
    -
  1. - one -
  2. -
-
    -
  1. - one (style change) -
  2. -
-
    -
  • - bullet -
  • -
-
    -
  • - bullet (style change) -
  • -
+```html +
    +
  1. +one +
  2. +
+
    +
  1. +one (style change) +
  2. +
+
    +
  • +bullet +
  • +
+
    +
  • +bullet (style change) +
  • +
+``` リスト項目の種類が曖昧な場合があります。この場合、可能であればリストを継続する方法で曖昧さが解決されます。たとえば、 i. item j. next item -
    -
  1. - item -
  2. -
  3. - next item -
  4. -
+```html +
    +
  1. +item +
  2. +
  3. +next item +
  4. +
+``` 最初の項目は、ローマ字小文字列挙とアルファベット小文字列挙の間で曖昧です。ただし、次の項目では後者の解釈のみが機能するため、2つの別々のリストよりも1つの連続したリストを作成できる読み方を好みます。 @@ -608,14 +689,16 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック 5) five 8) six -
    -
  1. - five -
  2. -
  3. - six -
  4. -
+```html +
    +
  1. +five +
  2. +
  3. +six +
  4. +
+``` 項目間または項目内のブロック間に空白行が含まれていないリストは、 *厳密に* (tightとして)分類されます。リストの先頭または末尾にある空白行は、厳密さの対象にはなりません。 @@ -625,22 +708,24 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック - sub - sub -
    -
  • - one -
  • -
  • - two -
      -
    • - sub -
    • -
    • - sub -
    • -
    -
  • -
+```html +
    +
  • +one +
  • +
  • +two +
      +
    • +sub +
    • +
    • +sub +
    • +
    +
  • +
+``` 厳密でないリストは *緩い* (looseな)リストです。この区別の意図された重要性は、項目間の空白を減らして厳密(タイト)なリストを表示する必要があることです。 @@ -648,14 +733,16 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック - two -
    -
  • -

    one

    -
  • -
  • -

    two

    -
  • -
+```html +
    +
  • +

    one

    +
  • +
  • +

    two

    +
  • +
+``` ### コードブロック @@ -664,20 +751,18 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック コンテンツはverbatimテキストとして解釈されます。 コンテンツにバックティック行が含まれている場合は、「フェンス」として用いたバックティックより多い数を指定してください: - ` This is how you do a code block: ruby x = 5 * 6 - - ` -
This is how you do a code block:
+```html
+
This is how you do a code block:
 
-     ruby
-    x = 5 * 6
-    
-    
+ ruby +x = 5 * 6 +
+``` 以下は、親コンテナが閉じられたときに暗黙的に閉じられるコードブロックの例です; @@ -687,12 +772,14 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック Paragraph. -
-
code in a
-    block quote
-    
-
-

Paragraph.

+```html +
+
code in a
+block quote
+
+
+

Paragraph.

+``` ### 水平線(hr) @@ -704,9 +791,11 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック When they woke up, ... -

Then they went to sleep.

-
-

When they woke up, …

+```html +

Then they went to sleep.

+
+

When they woke up, …

+``` ### Raw ブロック @@ -720,11 +809,13 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック - +```html + +``` ### Div @@ -738,10 +829,12 @@ divのコンテンツはブロックレベルコンテンツとして解釈さ And here is another. ::: -
-

Here is a paragraph.

-

And here is another.

-
+```html +
+

Here is a paragraph.

+

And here is another.

+
+``` ### パイプテーブル @@ -749,12 +842,14 @@ divのコンテンツはブロックレベルコンテンツとして解釈さ | 1 | 2 | - - - - - -
12
+```html + + + + + +
12
+``` *区切り線* `-` は、すべてのセルが1つ以上の文字のシーケンスで構成されている行で、オプションで接頭辞または接尾辞に `:` が付けられます。 @@ -765,20 +860,22 @@ divのコンテンツはブロックレベルコンテンツとして解釈さ | apple | 4 | | banana | 10 | - - - - - - - - - - - - - -
fruitprice
apple4
banana10
+```html + + + + + + + + + + + + + +
fruitprice
apple4
banana10
+``` 列の配置は、次のように区切り線によって決まります: @@ -795,20 +892,22 @@ divのコンテンツはブロックレベルコンテンツとして解釈さ |:---|---:| | 3 | 4 | - - - - - - - - - - - - - -
ab
12
34
+```html + + + + + + + + + + + + + +
ab
12
34
+``` `a` と `b` はヘッダーで、左の列はデフォルトで揃えられ、右の列は中央揃えで配置されます。 `1` と `2` を含む次の実際の2行もヘッダーであり、左の列は左揃え、右の列は右揃えになります。この配置は `3` と `4` を含む後続の行にも適用されます。 @@ -817,12 +916,14 @@ divのコンテンツはブロックレベルコンテンツとして解釈さ |:--|---:| | x | 2 | - - - - - -
x2
+```html + + + + + +
x2
+``` テーブルのセル内コンテンツはインラインとして解析されます。パイプテーブルのセル内ではブロックレベルのコンテンツを使用できません。 @@ -830,12 +931,14 @@ Djotは、バックスラッシュでエスケープされたパイプやverbati | just two \| `|` | cells in this table | - - - - - -
just two | |cells in this table
+```html + + + + + +
just two | |cells in this table
+``` 次の構文を使用して表にキャプションを追加できます: @@ -863,7 +966,9 @@ Djotは、バックスラッシュでエスケープされたパイプやverbati [ref][] -

ref

+```html +

ref

+``` URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」として生成されます。ただし、同じ属性がリンクと参照定義の両方で定義されている場合は、リンク上の属性が参照定義の属性をオーバーライドします。 @@ -872,7 +977,9 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と [ref][]{title=bar} -

ref

+```html +

ref

+``` 上記は「bar」というタイトルのリンクを取得します。 @@ -889,21 +996,23 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と > a block quote in the note. -

Here’s the reference.1

-
-
-
    -
  1. -

    This is a note - with two paragraphs.

    -

    Second paragraph.

    -
    -

    a block quote in the note.

    -
    -

    ↩︎︎

    -
  2. -
-
+```html +

Here’s the reference.1

+
+
+
    +
  1. +

    This is a note +with two paragraphs.

    +

    Second paragraph.

    +
    +

    a block quote in the note.

    +
    +

    ↩︎︎

    +
  2. +
+
+``` 引用ブロックやリスト項目と同様に、段落の後続行ではインデントを「lazily」省略できます: @@ -915,18 +1024,20 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と Second paragraph must be indented, at least in the first line. -

Here’s the reference.1

-
-
-
    -
  1. -

    This is a note - with two paragraphs.

    -

    Second paragraph must - be indented, at least in the first line.↩︎︎

    -
  2. -
-
+```html +

Here’s the reference.1

+
+
+
    +
  1. +

    This is a note +with two paragraphs.

    +

    Second paragraph must +be indented, at least in the first line.↩︎︎

    +
  2. +
+
+``` ### ブロックの属性 @@ -939,10 +1050,12 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と {source="Iliad"} > Sing, muse, of the wrath of Achilles -

Don’t forget to turn off the water!

-
-

Sing, muse, of the wrath of Achilles

-
+```html +

Don’t forget to turn off the water!

+
+

Sing, muse, of the wrath of Achilles

+
+``` ### 見出しへのリンク @@ -950,9 +1063,11 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と ## My heading + auto-identifier -
-

My heading + auto-identifier

-
+```html +
+

My heading + auto-identifier

+
+``` ただし、暗黙的なリンク参照がすべての見出しに対して作成されるため、ほとんどの場合、見出しに割り当てられた識別子を知る必要はありません。したがって、同じ文書内の「Epilogue」というタイトルの見出しにリンクするには、参照リンクを使用するだけです: @@ -962,11 +1077,13 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と # Epilogue -

See the Epilogue.

-
-
-

Epilogue

-
+```html +

See the Epilogue.

+
+
+

Epilogue

+
+``` ## ネストの制限