UNPKG

478 BYAMLView Raw
1cases:
2 - title: CommonMark block quote
3 id: quote
4 mdast:
5 type: root
6 children:
7 - type: blockquote
8 children:
9 - type: paragraph
10 children:
11 - type: text
12 value: To be or not to be
13 myst: |-
14 > To be or not to be
15 html: |-
16 <blockquote>
17 <p>To be or not to be</p>
18 </blockquote>
19 latex: |-
20 \begin{quote}
21 To be or not to be
22 \end{quote}