From 7f2e30e9fc9f22a8a6b6336a5c69b04c956f22fd Mon Sep 17 00:00:00 2001
From: dai
*not strong strong
``` @@ -88,14 +87,18 @@ _}not emphasized{_ [My link text](http://example.com) - +```html + +``` URLは複数行に分かれている場合があります。この場合改行が行われ先頭と末尾の空白は無視され行が連結されます。 [My link text](http://example.com?product_number=234234234234 234234234234) - +```html + +``` *参照リンク*では括弧内の宛先ではなく角括弧内の参照ラベルを使用します。これはリンクテキストの直後に置く必要があります。 @@ -103,13 +106,17 @@ URLは複数行に分かれている場合があります。この場合改行 [foo bar]: http://example.com - +```html + +``` 参照ラベルはドキュメント内のどこかで定義する必要があります。以下の[参照リンクの定義](#reference-link-definition)を参照してください。ただしリンクの解析は「ローカル」でありラベルが定義されているかどうかには依存しません。 [foo][bar] - +```html + +``` ラベルがない場合、リンクテキストはリンクテキストだけでなく参照ラベルとしても解釈されます: @@ -117,23 +124,27 @@ URLは複数行に分かれている場合があります。この場合改行 [My link text]: /url - +```html + +``` ### 画像 画像はリンクと同じように機能しますが、接頭辞 `!` が付いています。リンクと同様にインラインバリアントと参照バリアントの両方が可能です。  - + ![picture of a cat][cat] - + ![cat][] - + [cat]: feline.jpg -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
Verbatim with a backtick` character
+Verbatim with three backticks character
`foo`
`foo`
foo bar
foo bar
emphasized text
-strong emphasis
+```html +emphasized text
+strong emphasis
+``` また `_` は `*` 直後に空白が続かない場合にのみ強調を開始できます。強調を閉じることができるのは、直前に空白がない場合、および開始文字と終了文字の間に区切り文字以外の文字がある場合のみです。 _ Not emphasized (spaces). _ - + ___ (not an emphasized `_` character) -_ Not emphasized (spaces). _
-___ (not an emphasized _
character)
_ Not emphasized (spaces). _
+___ (not an emphasized _
character)
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.
My boss is meannice.
“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
-And here is the note.↩︎︎
-Here is the reference.1
+And here is the note.↩︎︎
+This is a soft
- break and this is a hard
- break.
This is a soft
+break and this is a hard
+break.
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 paragraph, finally
-A paragraph, finally.
-A paragraph, finally
+A paragraph, finally.
+-+```html +This is a block quote.
--
-- - with a -
-- - list in it. -
-
++``` Markdownと同様に、段落はじまり行の前を除き、引用ブロック内の通常段落行から `>` プレフィックスを省略することができます: > This is a block quote. -This is a block quote.
++
+- +with a +
+- +list in it. +
+
-+```html +This is a block - quote.
-
++``` ### リスト項目 @@ -484,15 +555,17 @@ Markdownと同様に、段落はじまり行の前を除き、引用ブロック > containing a block quote -This is a block +quote.
+
This is a - list item.
---containing a block quote
-
This is a +list item.
+++containing a block quote
+
This is a - list item.
-Second paragraph under the - list item.
-This is a +list item.
+Second paragraph under the +list item.
+A citrus fruit.
-A citrus fruit.
+one
-two
-one
+two
+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.
-Here is a paragraph.
+And here is another.
+1 | -2 | -
1 | +2 | +
fruit | -price | -
---|---|
apple | -4 | -
banana | -10 | -
fruit | +price | +
---|---|
apple | +4 | +
banana | +10 | +
a | -b | -
---|---|
1 | -2 | -
3 | -4 | -
a | +b | +
---|---|
1 | +2 | +
3 | +4 | +
x | -2 | -
x | +2 | +
just two | | |
- cells in this table | -
just two | | |
+cells in this table | +
Here’s the reference.1
-This is a note - with two paragraphs.
-Second paragraph.
--- -a block quote in the note.
-
Here’s the reference.1
+This is a note +with two paragraphs.
+Second paragraph.
+++ +a block quote in the note.
+
Here’s the reference.1
-This is a note - with two paragraphs.
-Second paragraph must - be indented, at least in the first line.↩︎︎
-Here’s the reference.1
+This is a note +with two paragraphs.
+Second paragraph must +be indented, at least in the first line.↩︎︎
+Don’t forget to turn off the water!
--+```html +Sing, muse, of the wrath of Achilles
-
Don’t forget to turn off the water!
+++``` ### 見出しへのリンク @@ -950,9 +1063,11 @@ URLは `/url` 、テキストリンクは「ref」、タイトルは「foo」と ## My heading + auto-identifier -Sing, muse, of the wrath of Achilles
+
See the Epilogue.
-See the Epilogue.
+