UNPKG

1.63 kBYAMLView Raw
1cases:
2 - title: CommonMark simple paragraph
3 id: paragraph
4 mdast:
5 type: root
6 children:
7 - type: paragraph
8 children:
9 - type: text
10 value: Something
11 myst: |-
12 Something
13 html: |-
14 <p>Something</p>
15 - title: CommomMark two paragraphs
16 mdast:
17 type: root
18 children:
19 - type: paragraph
20 children:
21 - type: text
22 value: Something
23 - type: paragraph
24 children:
25 - type: text
26 value: Something else
27 myst: |-
28 Something
29
30 Something else
31 html: |-
32 <p>Something</p>
33 <p>Something else</p>
34 latex: |-
35 Something
36
37 Something else
38 - title: CommonMark inline styling
39 id: formatting
40 mdast:
41 type: root
42 children:
43 - type: paragraph
44 children:
45 - type: strong
46 children:
47 - type: text
48 value: strong
49 - type: text
50 value: ', '
51 - type: emphasis
52 children:
53 - type: text
54 value: emphasis
55 - type: text
56 value: ', '
57 - type: inlineCode
58 value: literal text
59 - type: text
60 value: ', *escaped symbols*'
61 myst: |-
62 **strong**, _emphasis_, `literal text`, \*escaped symbols\*
63 html: |-
64 <p><strong>strong</strong>, <em>emphasis</em>, <code>literal text</code>, *escaped symbols*</p>
65 latex: |-
66 \textbf{strong}, \textit{emphasis}, \texttt{literal text}, *escaped symbols*