UNPKG

930 BYAMLView Raw
1cases:
2 - title: CommonMark hard breaks
3 mdast:
4 type: root
5 children:
6 - type: paragraph
7 children:
8 - type: text
9 value: hard
10 - type: break
11 - type: text
12 value: break
13 myst: |-
14 hard\
15 break
16 html: |-
17 <p>hard<br>break</p>
18 latex: |-
19 hard\\
20 break
21 - title: CommonMark thematic breaks
22 id: break
23 mdast:
24 type: root
25 children:
26 - type: paragraph
27 children:
28 - type: text
29 value: thematic
30 - type: thematicBreak
31 - type: paragraph
32 children:
33 - type: text
34 value: break
35 myst: |-
36 thematic
37
38 ---
39
40 break
41 html: |-
42 <p>thematic</p>
43 <hr>
44 <p>break</p>
45
46 latex: |-
47 thematic
48
49 \bigskip
50 \centerline{\rule{13cm}{0.4pt}}
51 \bigskip
52
53 break