UNPKG

284 kBYAMLView Raw
1cases:
2 - title: Tabs - example 1
3 mdast:
4 type: root
5 children:
6 - type: code
7 lang: ''
8 value: "foo\tbaz\t\tbim"
9 myst: "\tfoo\tbaz\t\tbim\n"
10 html: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
11 - title: Tabs - example 2
12 mdast:
13 type: root
14 children:
15 - type: code
16 lang: ''
17 value: "foo\tbaz\t\tbim"
18 myst: " \tfoo\tbaz\t\tbim\n"
19 html: "<pre><code>foo\tbaz\t\tbim\n</code></pre>\n"
20 - title: Tabs - example 3
21 mdast:
22 type: root
23 children:
24 - type: code
25 lang: ''
26 value: "a\ta\nὐ\ta"
27 myst: " a\ta\n ὐ\ta\n"
28 html: "<pre><code>a\ta\nὐ\ta\n</code></pre>\n"
29 - title: Tabs - example 4
30 mdast:
31 type: root
32 children:
33 - type: list
34 ordered: false
35 spread: false
36 children:
37 - type: listItem
38 spread: true
39 children:
40 - type: paragraph
41 children:
42 - type: text
43 value: foo
44 - type: paragraph
45 children:
46 - type: text
47 value: bar
48 myst: " - foo\n\n\tbar\n"
49 html: |-
50 <ul>
51 <li>
52 <p>foo</p>
53 <p>bar</p>
54 </li>
55 </ul>
56 - title: Tabs - example 5
57 mdast:
58 type: root
59 children:
60 - type: list
61 ordered: false
62 spread: false
63 children:
64 - type: listItem
65 spread: true
66 children:
67 - type: paragraph
68 children:
69 - type: text
70 value: foo
71 - type: code
72 lang: ''
73 value: ' bar'
74 myst: "- foo\n\n\t\tbar\n"
75 html: |-
76 <ul>
77 <li>
78 <p>foo</p>
79 <pre><code> bar
80 </code></pre>
81 </li>
82 </ul>
83 - title: Tabs - example 6
84 mdast:
85 type: root
86 children:
87 - type: blockquote
88 children:
89 - type: code
90 lang: ''
91 value: ' foo'
92 myst: ">\t\tfoo\n"
93 html: |-
94 <blockquote>
95 <pre><code> foo
96 </code></pre>
97 </blockquote>
98 - title: Tabs - example 7
99 mdast:
100 type: root
101 children:
102 - type: list
103 ordered: false
104 spread: false
105 children:
106 - type: listItem
107 spread: true
108 children:
109 - type: code
110 lang: ''
111 value: ' foo'
112 myst: "-\t\tfoo\n"
113 html: |-
114 <ul>
115 <li>
116 <pre><code> foo
117 </code></pre>
118 </li>
119 </ul>
120 - title: Tabs - example 8
121 mdast:
122 type: root
123 children:
124 - type: code
125 lang: ''
126 value: |-
127 foo
128 bar
129 myst: " foo\n\tbar\n"
130 html: |-
131 <pre><code>foo
132 bar
133 </code></pre>
134 - title: Tabs - example 9
135 mdast:
136 type: root
137 children:
138 - type: list
139 ordered: false
140 spread: false
141 children:
142 - type: listItem
143 spread: true
144 children:
145 - type: text
146 value: foo
147 - type: list
148 ordered: false
149 spread: false
150 children:
151 - type: listItem
152 spread: true
153 children:
154 - type: text
155 value: bar
156 - type: list
157 ordered: false
158 spread: false
159 children:
160 - type: listItem
161 spread: true
162 children:
163 - type: text
164 value: baz
165 myst: " - foo\n - bar\n\t - baz\n"
166 html: |-
167 <ul>
168 <li>foo
169 <ul>
170 <li>bar
171 <ul>
172 <li>baz</li>
173 </ul>
174 </li>
175 </ul>
176 </li>
177 </ul>
178 - title: Tabs - example 10
179 mdast:
180 type: root
181 children:
182 - type: heading
183 depth: 1
184 children:
185 - type: text
186 value: Foo
187 myst: "#\tFoo\n"
188 html: |-
189 <h1>Foo</h1>
190 - title: Tabs - example 11
191 mdast:
192 type: root
193 children:
194 - type: thematicBreak
195 myst: "*\t*\t*\t\n"
196 html: |-
197 <hr />
198 - title: Backslash escapes - example 12
199 mdast:
200 type: root
201 children:
202 - type: paragraph
203 children:
204 - type: text
205 value: '!"#$%&''()*+,-./:;<=>?@[\]^_`{|}~'
206 myst: |
207 \!\"\#\$\%\&\'\(\)\*\+\,\-\.\/\:\;\<\=\>\?\@\[\\\]\^\_\`\{\|\}\~
208 html: |-
209 <p>!&quot;#$%&amp;'()*+,-./:;&lt;=&gt;?@[\]^_`{|}~</p>
210 - title: Backslash escapes - example 13
211 mdast:
212 type: root
213 children:
214 - type: paragraph
215 children:
216 - type: text
217 value: "\\\t\\A\\a\\ \\3\\φ\\«"
218 myst: "\\\t\\A\\a\\ \\3\\φ\\«\n"
219 html: "<p>\\\t\\A\\a\\ \\3\\φ\\«</p>\n"
220 - title: Backslash escapes - example 14
221 mdast:
222 type: root
223 children:
224 - type: paragraph
225 children:
226 - type: text
227 value: |-
228 *not emphasized*
229 <br/> not a tag
230 [not a link](/foo)
231 `not code`
232 1. not a list
233 * not a list
234 # not a heading
235 [foo]: /url "not a reference"
236 &ouml; not a character entity
237 myst: |
238 \*not emphasized*
239 \<br/> not a tag
240 \[not a link](/foo)
241 \`not code`
242 1\. not a list
243 \* not a list
244 \# not a heading
245 \[foo]: /url "not a reference"
246 \&ouml; not a character entity
247 html: |-
248 <p>*not emphasized*
249 &lt;br/&gt; not a tag
250 [not a link](/foo)
251 `not code`
252 1. not a list
253 * not a list
254 # not a heading
255 [foo]: /url &quot;not a reference&quot;
256 &amp;ouml; not a character entity</p>
257 - title: Backslash escapes - example 15
258 mdast:
259 type: root
260 children:
261 - type: paragraph
262 children:
263 - type: text
264 value: \
265 - type: emphasis
266 children:
267 - type: text
268 value: emphasis
269 myst: |
270 \\*emphasis*
271 html: |-
272 <p>\<em>emphasis</em></p>
273 - title: Backslash escapes - example 16
274 mdast:
275 type: root
276 children:
277 - type: paragraph
278 children:
279 - type: text
280 value: foo
281 - type: break
282 - type: text
283 value: bar
284 myst: |
285 foo\
286 bar
287 html: |-
288 <p>foo<br />
289 bar</p>
290 - title: Backslash escapes - example 17
291 mdast:
292 type: root
293 children:
294 - type: paragraph
295 children:
296 - type: inlineCode
297 value: \[\`
298 myst: |
299 `` \[\` ``
300 html: |-
301 <p><code>\[\`</code></p>
302 - title: Backslash escapes - example 18
303 mdast:
304 type: root
305 children:
306 - type: code
307 lang: ''
308 value: \[\]
309 myst: |2
310 \[\]
311 html: |-
312 <pre><code>\[\]
313 </code></pre>
314 - title: Backslash escapes - example 19
315 mdast:
316 type: root
317 children:
318 - type: code
319 lang: ''
320 value: \[\]
321 myst: |
322 ~~~
323 \[\]
324 ~~~
325 html: |-
326 <pre><code>\[\]
327 </code></pre>
328 - title: Backslash escapes - example 20
329 mdast:
330 type: root
331 children:
332 - type: paragraph
333 children:
334 - type: link
335 url: http://example.com?find=%5C*
336 children:
337 - type: text
338 value: http://example.com?find=\*
339 myst: |
340 <http://example.com?find=\*>
341 html: >
342 <p><a
343 href="http://example.com?find=%5C*">http://example.com?find=\*</a></p>
344 - title: Backslash escapes - example 21
345 mdast:
346 type: root
347 children:
348 - type: html
349 value: <a href="/bar\/)">
350 myst: |
351 <a href="/bar\/)">
352 html: |-
353 <a href="/bar\/)">
354 - title: Backslash escapes - example 22
355 mdast:
356 type: root
357 children:
358 - type: paragraph
359 children:
360 - type: link
361 url: /bar*
362 title: ti*tle
363 children:
364 - type: text
365 value: foo
366 myst: |
367 [foo](/bar\* "ti\*tle")
368 html: |-
369 <p><a href="/bar*" title="ti*tle">foo</a></p>
370 - title: Backslash escapes - example 23
371 mdast:
372 type: root
373 children:
374 - type: paragraph
375 children:
376 - type: link
377 url: /bar*
378 title: ti*tle
379 children:
380 - type: text
381 value: foo
382 myst: |
383 [foo]
384
385 [foo]: /bar\* "ti\*tle"
386 html: |-
387 <p><a href="/bar*" title="ti*tle">foo</a></p>
388 - title: Backslash escapes - example 24
389 mdast:
390 type: root
391 children:
392 - type: code
393 lang: foo+bar
394 value: foo
395 myst: |
396 ``` foo\+bar
397 foo
398 ```
399 html: |-
400 <pre><code class="language-foo+bar">foo
401 </code></pre>
402 - title: Entity and numeric character references - example 25
403 mdast:
404 type: root
405 children:
406 - type: paragraph
407 children:
408 - type: text
409 value: "\u0020 & © Æ Ď\n¾ ℋ ⅆ\n∲ ≧̸"
410 myst: |
411 &nbsp; &amp; &copy; &AElig; &Dcaron;
412 &frac34; &HilbertSpace; &DifferentialD;
413 &ClockwiseContourIntegral; &ngE;
414 html: |-
415 <p> &amp; © Æ Ď
416 ¾
417 ≧̸</p>
418 - title: Entity and numeric character references - example 26
419 mdast:
420 type: root
421 children:
422 - type: paragraph
423 children:
424 - type: text
425 value: '# Ӓ Ϡ �'
426 myst: |
427 &#35; &#1234; &#992; &#0;
428 html: |-
429 <p># Ӓ Ϡ �</p>
430 - title: Entity and numeric character references - example 27
431 mdast:
432 type: root
433 children:
434 - type: paragraph
435 children:
436 - type: text
437 value: '" ആ ಫ'
438 myst: |
439 &#X22; &#XD06; &#xcab;
440 html: |-
441 <p>&quot; ಫ</p>
442 - title: Entity and numeric character references - example 28
443 mdast:
444 type: root
445 children:
446 - type: paragraph
447 children:
448 - type: text
449 value: |-
450 &nbsp &x; &#; &#x;
451 &#87654321;
452 &#abcdef0;
453 &ThisIsNotDefined; &hi?;
454 myst: |
455 &nbsp &x; &#; &#x;
456 &#87654321;
457 &#abcdef0;
458 &ThisIsNotDefined; &hi?;
459 html: |-
460 <p>&amp;nbsp &amp;x; &amp;#; &amp;#x;
461 &amp;#87654321;
462 &amp;#abcdef0;
463 &amp;ThisIsNotDefined; &amp;hi?;</p>
464 - title: Entity and numeric character references - example 29
465 mdast:
466 type: root
467 children:
468 - type: paragraph
469 children:
470 - type: text
471 value: '&copy'
472 myst: |
473 &copy
474 html: |-
475 <p>&amp;copy</p>
476 - title: Entity and numeric character references - example 30
477 mdast:
478 type: root
479 children:
480 - type: paragraph
481 children:
482 - type: text
483 value: '&MadeUpEntity;'
484 myst: |
485 &MadeUpEntity;
486 html: |-
487 <p>&amp;MadeUpEntity;</p>
488 - title: Entity and numeric character references - example 31
489 mdast:
490 type: root
491 children:
492 - type: html
493 value: <a href="&ouml;&ouml;.html">
494 myst: |
495 <a href="&ouml;&ouml;.html">
496 html: |-
497 <a href="&ouml;&ouml;.html">
498 - title: Entity and numeric character references - example 32
499 mdast:
500 type: root
501 children:
502 - type: paragraph
503 children:
504 - type: link
505 url: /f%C3%B6%C3%B6
506 title: föö
507 children:
508 - type: text
509 value: foo
510 myst: |
511 [foo](/f&ouml;&ouml; "f&ouml;&ouml;")
512 html: |-
513 <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
514 - title: Entity and numeric character references - example 33
515 mdast:
516 type: root
517 children:
518 - type: paragraph
519 children:
520 - type: link
521 url: /f%C3%B6%C3%B6
522 title: föö
523 children:
524 - type: text
525 value: foo
526 myst: |
527 [foo]
528
529 [foo]: /f&ouml;&ouml; "f&ouml;&ouml;"
530 html: |-
531 <p><a href="/f%C3%B6%C3%B6" title="föö">foo</a></p>
532 - title: Entity and numeric character references - example 34
533 mdast:
534 type: root
535 children:
536 - type: code
537 lang: föö
538 value: foo
539 myst: |
540 ``` f&ouml;&ouml;
541 foo
542 ```
543 html: |-
544 <pre><code class="language-föö">foo
545 </code></pre>
546 - title: Entity and numeric character references - example 35
547 mdast:
548 type: root
549 children:
550 - type: paragraph
551 children:
552 - type: inlineCode
553 value: f&ouml;&ouml;
554 myst: |
555 `f&ouml;&ouml;`
556 html: |-
557 <p><code>f&amp;ouml;&amp;ouml;</code></p>
558 - title: Entity and numeric character references - example 36
559 mdast:
560 type: root
561 children:
562 - type: code
563 lang: ''
564 value: f&ouml;f&ouml;
565 myst: |2
566 f&ouml;f&ouml;
567 html: |-
568 <pre><code>f&amp;ouml;f&amp;ouml;
569 </code></pre>
570 - title: Entity and numeric character references - example 37
571 mdast:
572 type: root
573 children:
574 - type: paragraph
575 children:
576 - type: text
577 value: |
578 *foo*
579 - type: emphasis
580 children:
581 - type: text
582 value: foo
583 myst: |
584 &#42;foo&#42;
585 *foo*
586 html: |-
587 <p>*foo*
588 <em>foo</em></p>
589 - title: Entity and numeric character references - example 38
590 mdast:
591 type: root
592 children:
593 - type: paragraph
594 children:
595 - type: text
596 value: '* foo'
597 - type: list
598 ordered: false
599 spread: false
600 children:
601 - type: listItem
602 spread: true
603 children:
604 - type: text
605 value: foo
606 myst: |
607 &#42; foo
608
609 * foo
610 html: |-
611 <p>* foo</p>
612 <ul>
613 <li>foo</li>
614 </ul>
615 - title: Entity and numeric character references - example 39
616 mdast:
617 type: root
618 children:
619 - type: paragraph
620 children:
621 - type: text
622 value: |-
623 foo
624
625 bar
626 myst: |
627 foo&#10;&#10;bar
628 html: |-
629 <p>foo
630
631 bar</p>
632 - title: Entity and numeric character references - example 40
633 mdast:
634 type: root
635 children:
636 - type: paragraph
637 children:
638 - type: text
639 value: "\tfoo"
640 myst: |
641 &#9;foo
642 html: "<p>\tfoo</p>\n"
643 - title: Entity and numeric character references - example 41
644 mdast:
645 type: root
646 children:
647 - type: paragraph
648 children:
649 - type: text
650 value: '[a](url "tit")'
651 myst: |
652 [a](url &quot;tit&quot;)
653 html: |-
654 <p>[a](url &quot;tit&quot;)</p>
655 - title: Precedence - example 42
656 mdast:
657 type: root
658 children:
659 - type: list
660 ordered: false
661 spread: false
662 children:
663 - type: listItem
664 spread: true
665 children:
666 - type: text
667 value: '`one'
668 - type: listItem
669 spread: true
670 children:
671 - type: text
672 value: two`
673 myst: |
674 - `one
675 - two`
676 html: |-
677 <ul>
678 <li>`one</li>
679 <li>two`</li>
680 </ul>
681 - title: Thematic breaks - example 43
682 mdast:
683 type: root
684 children:
685 - type: thematicBreak
686 - type: thematicBreak
687 - type: thematicBreak
688 myst: |
689 ***
690 ---
691 ___
692 html: |-
693 <hr />
694 <hr />
695 <hr />
696 - title: Thematic breaks - example 45
697 mdast:
698 type: root
699 children:
700 - type: paragraph
701 children:
702 - type: text
703 value: '==='
704 myst: |
705 ===
706 html: |-
707 <p>===</p>
708 - title: Thematic breaks - example 46
709 mdast:
710 type: root
711 children:
712 - type: paragraph
713 children:
714 - type: text
715 value: |-
716 --
717 **
718 __
719 myst: |
720 --
721 **
722 __
723 html: |-
724 <p>--
725 **
726 __</p>
727 - title: Thematic breaks - example 47
728 mdast:
729 type: root
730 children:
731 - type: thematicBreak
732 - type: thematicBreak
733 - type: thematicBreak
734 myst: |2
735 ***
736 ***
737 ***
738 html: |-
739 <hr />
740 <hr />
741 <hr />
742 - title: Thematic breaks - example 48
743 mdast:
744 type: root
745 children:
746 - type: code
747 lang: ''
748 value: '***'
749 myst: |2
750 ***
751 html: |-
752 <pre><code>***
753 </code></pre>
754 - title: Thematic breaks - example 49
755 mdast:
756 type: root
757 children:
758 - type: paragraph
759 children:
760 - type: text
761 value: |-
762 Foo
763 ***
764 myst: |
765 Foo
766 ***
767 html: |-
768 <p>Foo
769 ***</p>
770 - title: Thematic breaks - example 50
771 mdast:
772 type: root
773 children:
774 - type: thematicBreak
775 myst: |
776 _____________________________________
777 html: |-
778 <hr />
779 - title: Thematic breaks - example 51
780 mdast:
781 type: root
782 children:
783 - type: thematicBreak
784 myst: |2
785 - - -
786 html: |-
787 <hr />
788 - title: Thematic breaks - example 52
789 mdast:
790 type: root
791 children:
792 - type: thematicBreak
793 myst: |2
794 ** * ** * ** * **
795 html: |-
796 <hr />
797 - title: Thematic breaks - example 53
798 mdast:
799 type: root
800 children:
801 - type: thematicBreak
802 myst: |
803 - - - -
804 html: |-
805 <hr />
806 - title: Thematic breaks - example 54
807 mdast:
808 type: root
809 children:
810 - type: thematicBreak
811 myst: |
812 - - - -
813 html: |-
814 <hr />
815 - title: Thematic breaks - example 55
816 mdast:
817 type: root
818 children:
819 - type: paragraph
820 children:
821 - type: text
822 value: _ _ _ _ a
823 - type: paragraph
824 children:
825 - type: text
826 value: a------
827 - type: paragraph
828 children:
829 - type: text
830 value: '---a---'
831 myst: |
832 _ _ _ _ a
833
834 a------
835
836 ---a---
837 html: |-
838 <p>_ _ _ _ a</p>
839 <p>a------</p>
840 <p>---a---</p>
841 - title: Thematic breaks - example 56
842 mdast:
843 type: root
844 children:
845 - type: paragraph
846 children:
847 - type: emphasis
848 children:
849 - type: text
850 value: '-'
851 myst: |2
852 *-*
853 html: |-
854 <p><em>-</em></p>
855 - title: Thematic breaks - example 57
856 mdast:
857 type: root
858 children:
859 - type: list
860 ordered: false
861 spread: false
862 children:
863 - type: listItem
864 spread: true
865 children:
866 - type: text
867 value: foo
868 - type: thematicBreak
869 - type: list
870 ordered: false
871 spread: false
872 children:
873 - type: listItem
874 spread: true
875 children:
876 - type: text
877 value: bar
878 myst: |
879 - foo
880 ***
881 - bar
882 html: |-
883 <ul>
884 <li>foo</li>
885 </ul>
886 <hr />
887 <ul>
888 <li>bar</li>
889 </ul>
890 - title: Thematic breaks - example 58
891 mdast:
892 type: root
893 children:
894 - type: paragraph
895 children:
896 - type: text
897 value: Foo
898 - type: thematicBreak
899 - type: paragraph
900 children:
901 - type: text
902 value: bar
903 myst: |
904 Foo
905 ***
906 bar
907 html: |-
908 <p>Foo</p>
909 <hr />
910 <p>bar</p>
911 - title: Thematic breaks - example 59
912 mdast:
913 type: root
914 children:
915 - type: heading
916 depth: 2
917 children:
918 - type: text
919 value: Foo
920 - type: paragraph
921 children:
922 - type: text
923 value: bar
924 myst: |
925 Foo
926 ---
927 bar
928 html: |-
929 <h2>Foo</h2>
930 <p>bar</p>
931 - title: Thematic breaks - example 60
932 mdast:
933 type: root
934 children:
935 - type: list
936 ordered: false
937 spread: false
938 children:
939 - type: listItem
940 spread: true
941 children:
942 - type: text
943 value: Foo
944 - type: thematicBreak
945 - type: list
946 ordered: false
947 spread: false
948 children:
949 - type: listItem
950 spread: true
951 children:
952 - type: text
953 value: Bar
954 myst: |
955 * Foo
956 * * *
957 * Bar
958 html: |-
959 <ul>
960 <li>Foo</li>
961 </ul>
962 <hr />
963 <ul>
964 <li>Bar</li>
965 </ul>
966 - title: Thematic breaks - example 61
967 mdast:
968 type: root
969 children:
970 - type: list
971 ordered: false
972 spread: false
973 children:
974 - type: listItem
975 spread: true
976 children:
977 - type: text
978 value: Foo
979 - type: listItem
980 spread: true
981 children:
982 - type: thematicBreak
983 myst: |
984 - Foo
985 - * * *
986 html: |-
987 <ul>
988 <li>Foo</li>
989 <li>
990 <hr />
991 </li>
992 </ul>
993 - title: ATX headings - example 62
994 mdast:
995 type: root
996 children:
997 - type: heading
998 depth: 1
999 children:
1000 - type: text
1001 value: foo
1002 - type: heading
1003 depth: 2
1004 children:
1005 - type: text
1006 value: foo
1007 - type: heading
1008 depth: 3
1009 children:
1010 - type: text
1011 value: foo
1012 - type: heading
1013 depth: 4
1014 children:
1015 - type: text
1016 value: foo
1017 - type: heading
1018 depth: 5
1019 children:
1020 - type: text
1021 value: foo
1022 - type: heading
1023 depth: 6
1024 children:
1025 - type: text
1026 value: foo
1027 myst: |
1028 # foo
1029 ## foo
1030 ### foo
1031 #### foo
1032 ##### foo
1033 ###### foo
1034 html: |-
1035 <h1>foo</h1>
1036 <h2>foo</h2>
1037 <h3>foo</h3>
1038 <h4>foo</h4>
1039 <h5>foo</h5>
1040 <h6>foo</h6>
1041 - title: ATX headings - example 63
1042 mdast:
1043 type: root
1044 children:
1045 - type: paragraph
1046 children:
1047 - type: text
1048 value: '####### foo'
1049 myst: |
1050 ####### foo
1051 html: |-
1052 <p>####### foo</p>
1053 - title: ATX headings - example 64
1054 mdast:
1055 type: root
1056 children:
1057 - type: paragraph
1058 children:
1059 - type: text
1060 value: '#5 bolt'
1061 - type: paragraph
1062 children:
1063 - type: text
1064 value: '#hashtag'
1065 myst: |
1066 #5 bolt
1067
1068 #hashtag
1069 html: |-
1070 <p>#5 bolt</p>
1071 <p>#hashtag</p>
1072 - title: ATX headings - example 65
1073 mdast:
1074 type: root
1075 children:
1076 - type: paragraph
1077 children:
1078 - type: text
1079 value: '## foo'
1080 myst: |
1081 \## foo
1082 html: |-
1083 <p>## foo</p>
1084 - title: ATX headings - example 66
1085 mdast:
1086 type: root
1087 children:
1088 - type: heading
1089 depth: 1
1090 children:
1091 - type: text
1092 value: 'foo '
1093 - type: emphasis
1094 children:
1095 - type: text
1096 value: bar
1097 - type: text
1098 value: ' *baz*'
1099 myst: |
1100 # foo *bar* \*baz\*
1101 html: |-
1102 <h1>foo <em>bar</em> *baz*</h1>
1103 - title: ATX headings - example 67
1104 mdast:
1105 type: root
1106 children:
1107 - type: heading
1108 depth: 1
1109 children:
1110 - type: text
1111 value: foo
1112 myst: |
1113 # foo
1114 html: |-
1115 <h1>foo</h1>
1116 - title: ATX headings - example 68
1117 mdast:
1118 type: root
1119 children:
1120 - type: heading
1121 depth: 3
1122 children:
1123 - type: text
1124 value: foo
1125 - type: heading
1126 depth: 2
1127 children:
1128 - type: text
1129 value: foo
1130 - type: heading
1131 depth: 1
1132 children:
1133 - type: text
1134 value: foo
1135 myst: |2
1136 ### foo
1137 ## foo
1138 # foo
1139 html: |-
1140 <h3>foo</h3>
1141 <h2>foo</h2>
1142 <h1>foo</h1>
1143 - title: ATX headings - example 69
1144 mdast:
1145 type: root
1146 children:
1147 - type: code
1148 lang: ''
1149 value: '# foo'
1150 myst: |2
1151 # foo
1152 html: |-
1153 <pre><code># foo
1154 </code></pre>
1155 - title: ATX headings - example 70
1156 mdast:
1157 type: root
1158 children:
1159 - type: paragraph
1160 children:
1161 - type: text
1162 value: |-
1163 foo
1164 # bar
1165 myst: |
1166 foo
1167 # bar
1168 html: |-
1169 <p>foo
1170 # bar</p>
1171 - title: ATX headings - example 71
1172 mdast:
1173 type: root
1174 children:
1175 - type: heading
1176 depth: 2
1177 children:
1178 - type: text
1179 value: foo
1180 - type: heading
1181 depth: 3
1182 children:
1183 - type: text
1184 value: bar
1185 myst: |
1186 ## foo ##
1187 ### bar ###
1188 html: |-
1189 <h2>foo</h2>
1190 <h3>bar</h3>
1191 - title: ATX headings - example 72
1192 mdast:
1193 type: root
1194 children:
1195 - type: heading
1196 depth: 1
1197 children:
1198 - type: text
1199 value: foo
1200 - type: heading
1201 depth: 5
1202 children:
1203 - type: text
1204 value: foo
1205 myst: |
1206 # foo ##################################
1207 ##### foo ##
1208 html: |-
1209 <h1>foo</h1>
1210 <h5>foo</h5>
1211 - title: ATX headings - example 73
1212 mdast:
1213 type: root
1214 children:
1215 - type: heading
1216 depth: 3
1217 children:
1218 - type: text
1219 value: foo
1220 myst: |
1221 ### foo ###
1222 html: |-
1223 <h3>foo</h3>
1224 - title: ATX headings - example 74
1225 mdast:
1226 type: root
1227 children:
1228 - type: heading
1229 depth: 3
1230 children:
1231 - type: text
1232 value: 'foo ### b'
1233 myst: |
1234 ### foo ### b
1235 html: |-
1236 <h3>foo ### b</h3>
1237 - title: ATX headings - example 75
1238 mdast:
1239 type: root
1240 children:
1241 - type: heading
1242 depth: 1
1243 children:
1244 - type: text
1245 value: foo#
1246 myst: |
1247 # foo#
1248 html: |-
1249 <h1>foo#</h1>
1250 - title: ATX headings - example 76
1251 mdast:
1252 type: root
1253 children:
1254 - type: heading
1255 depth: 3
1256 children:
1257 - type: text
1258 value: 'foo ###'
1259 - type: heading
1260 depth: 2
1261 children:
1262 - type: text
1263 value: 'foo ###'
1264 - type: heading
1265 depth: 1
1266 children:
1267 - type: text
1268 value: 'foo #'
1269 myst: |
1270 ### foo \###
1271 ## foo #\##
1272 # foo \#
1273 html: |-
1274 <h3>foo ###</h3>
1275 <h2>foo ###</h2>
1276 <h1>foo #</h1>
1277 - title: ATX headings - example 77
1278 mdast:
1279 type: root
1280 children:
1281 - type: thematicBreak
1282 - type: heading
1283 depth: 2
1284 children:
1285 - type: text
1286 value: foo
1287 - type: thematicBreak
1288 myst: |
1289 ****
1290 ## foo
1291 ****
1292 html: |-
1293 <hr />
1294 <h2>foo</h2>
1295 <hr />
1296 - title: ATX headings - example 78
1297 mdast:
1298 type: root
1299 children:
1300 - type: paragraph
1301 children:
1302 - type: text
1303 value: Foo bar
1304 - type: heading
1305 depth: 1
1306 children:
1307 - type: text
1308 value: baz
1309 - type: paragraph
1310 children:
1311 - type: text
1312 value: Bar foo
1313 myst: |
1314 Foo bar
1315 # baz
1316 Bar foo
1317 html: |-
1318 <p>Foo bar</p>
1319 <h1>baz</h1>
1320 <p>Bar foo</p>
1321 - title: ATX headings - example 79
1322 mdast:
1323 type: root
1324 children:
1325 - type: heading
1326 depth: 2
1327 children: []
1328 - type: heading
1329 depth: 1
1330 children: []
1331 - type: heading
1332 depth: 3
1333 children: []
1334 myst: |
1335 ##
1336 #
1337 ### ###
1338 html: |-
1339 <h2></h2>
1340 <h1></h1>
1341 <h3></h3>
1342 - title: Setext headings - example 80
1343 mdast:
1344 type: root
1345 children:
1346 - type: heading
1347 depth: 1
1348 children:
1349 - type: text
1350 value: 'Foo '
1351 - type: emphasis
1352 children:
1353 - type: text
1354 value: bar
1355 - type: heading
1356 depth: 2
1357 children:
1358 - type: text
1359 value: 'Foo '
1360 - type: emphasis
1361 children:
1362 - type: text
1363 value: bar
1364 myst: |
1365 Foo *bar*
1366 =========
1367
1368 Foo *bar*
1369 ---------
1370 html: |-
1371 <h1>Foo <em>bar</em></h1>
1372 <h2>Foo <em>bar</em></h2>
1373 - title: Setext headings - example 81
1374 mdast:
1375 type: root
1376 children:
1377 - type: heading
1378 depth: 1
1379 children:
1380 - type: text
1381 value: 'Foo '
1382 - type: emphasis
1383 children:
1384 - type: text
1385 value: |-
1386 bar
1387 baz
1388 myst: |
1389 Foo *bar
1390 baz*
1391 ====
1392 html: |-
1393 <h1>Foo <em>bar
1394 baz</em></h1>
1395 - title: Setext headings - example 82
1396 mdast:
1397 type: root
1398 children:
1399 - type: heading
1400 depth: 1
1401 children:
1402 - type: text
1403 value: 'Foo '
1404 - type: emphasis
1405 children:
1406 - type: text
1407 value: |-
1408 bar
1409 baz
1410 myst: " Foo *bar\nbaz*\t\n====\n"
1411 html: |-
1412 <h1>Foo <em>bar
1413 baz</em></h1>
1414 - title: Setext headings - example 83
1415 mdast:
1416 type: root
1417 children:
1418 - type: heading
1419 depth: 2
1420 children:
1421 - type: text
1422 value: Foo
1423 - type: heading
1424 depth: 1
1425 children:
1426 - type: text
1427 value: Foo
1428 myst: |
1429 Foo
1430 -------------------------
1431
1432 Foo
1433 =
1434 html: |-
1435 <h2>Foo</h2>
1436 <h1>Foo</h1>
1437 - title: Setext headings - example 84
1438 mdast:
1439 type: root
1440 children:
1441 - type: heading
1442 depth: 2
1443 children:
1444 - type: text
1445 value: Foo
1446 - type: heading
1447 depth: 2
1448 children:
1449 - type: text
1450 value: Foo
1451 - type: heading
1452 depth: 1
1453 children:
1454 - type: text
1455 value: Foo
1456 myst: |2
1457 Foo
1458 ---
1459
1460 Foo
1461 -----
1462
1463 Foo
1464 ===
1465 html: |-
1466 <h2>Foo</h2>
1467 <h2>Foo</h2>
1468 <h1>Foo</h1>
1469 - title: Setext headings - example 85
1470 mdast:
1471 type: root
1472 children:
1473 - type: code
1474 lang: ''
1475 value: |-
1476 Foo
1477 ---
1478
1479 Foo
1480 - type: thematicBreak
1481 myst: |2
1482 Foo
1483 ---
1484
1485 Foo
1486 ---
1487 html: |-
1488 <pre><code>Foo
1489 ---
1490
1491 Foo
1492 </code></pre>
1493 <hr />
1494 - title: Setext headings - example 86
1495 mdast:
1496 type: root
1497 children:
1498 - type: heading
1499 depth: 2
1500 children:
1501 - type: text
1502 value: Foo
1503 myst: |
1504 Foo
1505 ----
1506 html: |-
1507 <h2>Foo</h2>
1508 - title: Setext headings - example 87
1509 mdast:
1510 type: root
1511 children:
1512 - type: paragraph
1513 children:
1514 - type: text
1515 value: |-
1516 Foo
1517 ---
1518 myst: |
1519 Foo
1520 ---
1521 html: |-
1522 <p>Foo
1523 ---</p>
1524 - title: Setext headings - example 88
1525 mdast:
1526 type: root
1527 children:
1528 - type: paragraph
1529 children:
1530 - type: text
1531 value: |-
1532 Foo
1533 = =
1534 - type: paragraph
1535 children:
1536 - type: text
1537 value: Foo
1538 - type: thematicBreak
1539 myst: |
1540 Foo
1541 = =
1542
1543 Foo
1544 --- -
1545 html: |-
1546 <p>Foo
1547 = =</p>
1548 <p>Foo</p>
1549 <hr />
1550 - title: Setext headings - example 89
1551 mdast:
1552 type: root
1553 children:
1554 - type: heading
1555 depth: 2
1556 children:
1557 - type: text
1558 value: Foo
1559 myst: |
1560 Foo
1561 -----
1562 html: |-
1563 <h2>Foo</h2>
1564 - title: Setext headings - example 90
1565 mdast:
1566 type: root
1567 children:
1568 - type: heading
1569 depth: 2
1570 children:
1571 - type: text
1572 value: Foo\
1573 myst: |
1574 Foo\
1575 ----
1576 html: |-
1577 <h2>Foo\</h2>
1578 - title: Setext headings - example 91
1579 mdast:
1580 type: root
1581 children:
1582 - type: heading
1583 depth: 2
1584 children:
1585 - type: text
1586 value: '`Foo'
1587 - type: paragraph
1588 children:
1589 - type: text
1590 value: '`'
1591 - type: heading
1592 depth: 2
1593 children:
1594 - type: text
1595 value: <a title="a lot
1596 - type: paragraph
1597 children:
1598 - type: text
1599 value: of dashes"/>
1600 myst: |
1601 `Foo
1602 ----
1603 `
1604
1605 <a title="a lot
1606 ---
1607 of dashes"/>
1608 html: |-
1609 <h2>`Foo</h2>
1610 <p>`</p>
1611 <h2>&lt;a title=&quot;a lot</h2>
1612 <p>of dashes&quot;/&gt;</p>
1613 - title: Setext headings - example 92
1614 mdast:
1615 type: root
1616 children:
1617 - type: blockquote
1618 children:
1619 - type: paragraph
1620 children:
1621 - type: text
1622 value: Foo
1623 - type: thematicBreak
1624 myst: |
1625 > Foo
1626 ---
1627 html: |-
1628 <blockquote>
1629 <p>Foo</p>
1630 </blockquote>
1631 <hr />
1632 - title: Setext headings - example 93
1633 mdast:
1634 type: root
1635 children:
1636 - type: blockquote
1637 children:
1638 - type: paragraph
1639 children:
1640 - type: text
1641 value: |-
1642 foo
1643 bar
1644 ===
1645 myst: |
1646 > foo
1647 bar
1648 ===
1649 html: |-
1650 <blockquote>
1651 <p>foo
1652 bar
1653 ===</p>
1654 </blockquote>
1655 - title: Setext headings - example 94
1656 mdast:
1657 type: root
1658 children:
1659 - type: list
1660 ordered: false
1661 spread: false
1662 children:
1663 - type: listItem
1664 spread: true
1665 children:
1666 - type: text
1667 value: Foo
1668 - type: thematicBreak
1669 myst: |
1670 - Foo
1671 ---
1672 html: |-
1673 <ul>
1674 <li>Foo</li>
1675 </ul>
1676 <hr />
1677 - title: Setext headings - example 95
1678 mdast:
1679 type: root
1680 children:
1681 - type: heading
1682 depth: 2
1683 children:
1684 - type: text
1685 value: |-
1686 Foo
1687 Bar
1688 myst: |
1689 Foo
1690 Bar
1691 ---
1692 html: |-
1693 <h2>Foo
1694 Bar</h2>
1695 - title: Setext headings - example 96
1696 mdast:
1697 type: root
1698 children:
1699 - type: thematicBreak
1700 - type: heading
1701 depth: 2
1702 children:
1703 - type: text
1704 value: Foo
1705 - type: heading
1706 depth: 2
1707 children:
1708 - type: text
1709 value: Bar
1710 - type: paragraph
1711 children:
1712 - type: text
1713 value: Baz
1714 myst: |
1715 ---
1716 Foo
1717 ---
1718 Bar
1719 ---
1720 Baz
1721 html: |-
1722 <hr />
1723 <h2>Foo</h2>
1724 <h2>Bar</h2>
1725 <p>Baz</p>
1726 - title: Setext headings - example 97
1727 mdast:
1728 type: root
1729 children:
1730 - type: paragraph
1731 children:
1732 - type: text
1733 value: '===='
1734 myst: |
1735
1736 ====
1737 html: |-
1738 <p>====</p>
1739 - title: Setext headings - example 98
1740 mdast:
1741 type: root
1742 children:
1743 - type: thematicBreak
1744 - type: thematicBreak
1745 myst: |
1746 ---
1747 ---
1748 html: |-
1749 <hr />
1750 <hr />
1751 - title: Setext headings - example 99
1752 mdast:
1753 type: root
1754 children:
1755 - type: list
1756 ordered: false
1757 spread: false
1758 children:
1759 - type: listItem
1760 spread: true
1761 children:
1762 - type: text
1763 value: foo
1764 - type: thematicBreak
1765 myst: |
1766 - foo
1767 -----
1768 html: |-
1769 <ul>
1770 <li>foo</li>
1771 </ul>
1772 <hr />
1773 - title: Setext headings - example 100
1774 mdast:
1775 type: root
1776 children:
1777 - type: code
1778 lang: ''
1779 value: foo
1780 - type: thematicBreak
1781 myst: |2
1782 foo
1783 ---
1784 html: |-
1785 <pre><code>foo
1786 </code></pre>
1787 <hr />
1788 - title: Setext headings - example 101
1789 mdast:
1790 type: root
1791 children:
1792 - type: blockquote
1793 children:
1794 - type: paragraph
1795 children:
1796 - type: text
1797 value: foo
1798 - type: thematicBreak
1799 myst: |
1800 > foo
1801 -----
1802 html: |-
1803 <blockquote>
1804 <p>foo</p>
1805 </blockquote>
1806 <hr />
1807 - title: Setext headings - example 102
1808 mdast:
1809 type: root
1810 children:
1811 - type: heading
1812 depth: 2
1813 children:
1814 - type: text
1815 value: '> foo'
1816 myst: |
1817 \> foo
1818 ------
1819 html: |-
1820 <h2>&gt; foo</h2>
1821 - title: Setext headings - example 103
1822 mdast:
1823 type: root
1824 children:
1825 - type: paragraph
1826 children:
1827 - type: text
1828 value: Foo
1829 - type: heading
1830 depth: 2
1831 children:
1832 - type: text
1833 value: bar
1834 - type: paragraph
1835 children:
1836 - type: text
1837 value: baz
1838 myst: |
1839 Foo
1840
1841 bar
1842 ---
1843 baz
1844 html: |-
1845 <p>Foo</p>
1846 <h2>bar</h2>
1847 <p>baz</p>
1848 - title: Setext headings - example 104
1849 mdast:
1850 type: root
1851 children:
1852 - type: paragraph
1853 children:
1854 - type: text
1855 value: |-
1856 Foo
1857 bar
1858 - type: thematicBreak
1859 - type: paragraph
1860 children:
1861 - type: text
1862 value: baz
1863 myst: |
1864 Foo
1865 bar
1866
1867 ---
1868
1869 baz
1870 html: |-
1871 <p>Foo
1872 bar</p>
1873 <hr />
1874 <p>baz</p>
1875 - title: Setext headings - example 105
1876 mdast:
1877 type: root
1878 children:
1879 - type: paragraph
1880 children:
1881 - type: text
1882 value: |-
1883 Foo
1884 bar
1885 - type: thematicBreak
1886 - type: paragraph
1887 children:
1888 - type: text
1889 value: baz
1890 myst: |
1891 Foo
1892 bar
1893 * * *
1894 baz
1895 html: |-
1896 <p>Foo
1897 bar</p>
1898 <hr />
1899 <p>baz</p>
1900 - title: Setext headings - example 106
1901 mdast:
1902 type: root
1903 children:
1904 - type: paragraph
1905 children:
1906 - type: text
1907 value: |-
1908 Foo
1909 bar
1910 ---
1911 baz
1912 myst: |
1913 Foo
1914 bar
1915 \---
1916 baz
1917 html: |-
1918 <p>Foo
1919 bar
1920 ---
1921 baz</p>
1922 - title: Indented code blocks - example 107
1923 mdast:
1924 type: root
1925 children:
1926 - type: code
1927 lang: ''
1928 value: |-
1929 a simple
1930 indented code block
1931 myst: |2
1932 a simple
1933 indented code block
1934 html: |-
1935 <pre><code>a simple
1936 indented code block
1937 </code></pre>
1938 - title: Indented code blocks - example 108
1939 mdast:
1940 type: root
1941 children:
1942 - type: list
1943 ordered: false
1944 spread: false
1945 children:
1946 - type: listItem
1947 spread: true
1948 children:
1949 - type: paragraph
1950 children:
1951 - type: text
1952 value: foo
1953 - type: paragraph
1954 children:
1955 - type: text
1956 value: bar
1957 myst: |2
1958 - foo
1959
1960 bar
1961 html: |-
1962 <ul>
1963 <li>
1964 <p>foo</p>
1965 <p>bar</p>
1966 </li>
1967 </ul>
1968 - title: Indented code blocks - example 109
1969 mdast:
1970 type: root
1971 children:
1972 - type: list
1973 ordered: true
1974 start: 1
1975 spread: false
1976 children:
1977 - type: listItem
1978 spread: true
1979 children:
1980 - type: paragraph
1981 children:
1982 - type: text
1983 value: foo
1984 - type: list
1985 ordered: false
1986 spread: false
1987 children:
1988 - type: listItem
1989 spread: true
1990 children:
1991 - type: text
1992 value: bar
1993 myst: |
1994 1. foo
1995
1996 - bar
1997 html: |-
1998 <ol>
1999 <li>
2000 <p>foo</p>
2001 <ul>
2002 <li>bar</li>
2003 </ul>
2004 </li>
2005 </ol>
2006 - title: Indented code blocks - example 110
2007 mdast:
2008 type: root
2009 children:
2010 - type: code
2011 lang: ''
2012 value: |-
2013 <a/>
2014 *hi*
2015
2016 - one
2017 myst: |2
2018 <a/>
2019 *hi*
2020
2021 - one
2022 html: |-
2023 <pre><code>&lt;a/&gt;
2024 *hi*
2025
2026 - one
2027 </code></pre>
2028 - title: Indented code blocks - example 111
2029 mdast:
2030 type: root
2031 children:
2032 - type: code
2033 lang: ''
2034 value: |-
2035 chunk1
2036
2037 chunk2
2038
2039
2040
2041 chunk3
2042 myst: |2
2043 chunk1
2044
2045 chunk2
2046
2047
2048
2049 chunk3
2050 html: |-
2051 <pre><code>chunk1
2052
2053 chunk2
2054
2055
2056
2057 chunk3
2058 </code></pre>
2059 - title: Indented code blocks - example 112
2060 mdast:
2061 type: root
2062 children:
2063 - type: code
2064 lang: ''
2065 value: |-
2066 chunk1
2067
2068 chunk2
2069 myst: |2
2070 chunk1
2071
2072 chunk2
2073 html: |-
2074 <pre><code>chunk1
2075
2076 chunk2
2077 </code></pre>
2078 - title: Indented code blocks - example 113
2079 mdast:
2080 type: root
2081 children:
2082 - type: paragraph
2083 children:
2084 - type: text
2085 value: |-
2086 Foo
2087 bar
2088 myst: |+
2089 Foo
2090 bar
2091
2092 html: |-
2093 <p>Foo
2094 bar</p>
2095 - title: Indented code blocks - example 114
2096 mdast:
2097 type: root
2098 children:
2099 - type: code
2100 lang: ''
2101 value: foo
2102 - type: paragraph
2103 children:
2104 - type: text
2105 value: bar
2106 myst: |2
2107 foo
2108 bar
2109 html: |-
2110 <pre><code>foo
2111 </code></pre>
2112 <p>bar</p>
2113 - title: Indented code blocks - example 115
2114 mdast:
2115 type: root
2116 children:
2117 - type: heading
2118 depth: 1
2119 children:
2120 - type: text
2121 value: Heading
2122 - type: code
2123 lang: ''
2124 value: foo
2125 - type: heading
2126 depth: 2
2127 children:
2128 - type: text
2129 value: Heading
2130 - type: code
2131 lang: ''
2132 value: foo
2133 - type: thematicBreak
2134 myst: |
2135 # Heading
2136 foo
2137 Heading
2138 ------
2139 foo
2140 ----
2141 html: |-
2142 <h1>Heading</h1>
2143 <pre><code>foo
2144 </code></pre>
2145 <h2>Heading</h2>
2146 <pre><code>foo
2147 </code></pre>
2148 <hr />
2149 - title: Indented code blocks - example 116
2150 mdast:
2151 type: root
2152 children:
2153 - type: code
2154 lang: ''
2155 value: |2-
2156 foo
2157 bar
2158 myst: |2
2159 foo
2160 bar
2161 html: |-
2162 <pre><code> foo
2163 bar
2164 </code></pre>
2165 - title: Indented code blocks - example 117
2166 mdast:
2167 type: root
2168 children:
2169 - type: code
2170 lang: ''
2171 value: foo
2172 myst: |2+
2173
2174
2175 foo
2176
2177
2178 html: |-
2179 <pre><code>foo
2180 </code></pre>
2181 - title: Indented code blocks - example 118
2182 mdast:
2183 type: root
2184 children:
2185 - type: code
2186 lang: ''
2187 value: 'foo '
2188 myst: ' foo '
2189 html: |-
2190 <pre><code>foo
2191 </code></pre>
2192 - title: Fenced code blocks - example 119
2193 mdast:
2194 type: root
2195 children:
2196 - type: code
2197 lang: ''
2198 value: |-
2199 <
2200 >
2201 myst: |
2202 ```
2203 <
2204 >
2205 ```
2206 html: |-
2207 <pre><code>&lt;
2208 &gt;
2209 </code></pre>
2210 - title: Fenced code blocks - example 120
2211 mdast:
2212 type: root
2213 children:
2214 - type: code
2215 lang: ''
2216 value: |-
2217 <
2218 >
2219 myst: |
2220 ~~~
2221 <
2222 >
2223 ~~~
2224 html: |-
2225 <pre><code>&lt;
2226 &gt;
2227 </code></pre>
2228 - title: Fenced code blocks - example 121
2229 mdast:
2230 type: root
2231 children:
2232 - type: paragraph
2233 children:
2234 - type: inlineCode
2235 value: foo
2236 myst: |
2237 ``
2238 foo
2239 ``
2240 html: |-
2241 <p><code>foo</code></p>
2242 - title: Fenced code blocks - example 122
2243 mdast:
2244 type: root
2245 children:
2246 - type: code
2247 lang: ''
2248 value: |-
2249 aaa
2250 ~~~
2251 myst: |
2252 ```
2253 aaa
2254 ~~~
2255 ```
2256 html: |-
2257 <pre><code>aaa
2258 ~~~
2259 </code></pre>
2260 - title: Fenced code blocks - example 123
2261 mdast:
2262 type: root
2263 children:
2264 - type: code
2265 lang: ''
2266 value: |-
2267 aaa
2268 ```
2269 myst: |
2270 ~~~
2271 aaa
2272 ```
2273 ~~~
2274 html: |-
2275 <pre><code>aaa
2276 ```
2277 </code></pre>
2278 - title: Fenced code blocks - example 124
2279 mdast:
2280 type: root
2281 children:
2282 - type: code
2283 lang: ''
2284 value: |-
2285 aaa
2286 ```
2287 myst: |
2288 ````
2289 aaa
2290 ```
2291 ``````
2292 html: |-
2293 <pre><code>aaa
2294 ```
2295 </code></pre>
2296 - title: Fenced code blocks - example 125
2297 mdast:
2298 type: root
2299 children:
2300 - type: code
2301 lang: ''
2302 value: |-
2303 aaa
2304 ~~~
2305 myst: |
2306 ~~~~
2307 aaa
2308 ~~~
2309 ~~~~
2310 html: |-
2311 <pre><code>aaa
2312 ~~~
2313 </code></pre>
2314 - title: Fenced code blocks - example 126
2315 mdast:
2316 type: root
2317 children:
2318 - type: code
2319 lang: ''
2320 value: ''
2321 myst: |
2322 ```
2323 html: |-
2324 <pre><code></code></pre>
2325 - title: Fenced code blocks - example 127
2326 mdast:
2327 type: root
2328 children:
2329 - type: code
2330 lang: ''
2331 value: |-
2332
2333 ```
2334 aaa
2335 myst: |
2336 `````
2337
2338 ```
2339 aaa
2340 html: |-
2341 <pre><code>
2342 ```
2343 aaa
2344 </code></pre>
2345 - title: Fenced code blocks - example 128
2346 mdast:
2347 type: root
2348 children:
2349 - type: blockquote
2350 children:
2351 - type: code
2352 lang: ''
2353 value: aaa
2354 - type: paragraph
2355 children:
2356 - type: text
2357 value: bbb
2358 myst: |
2359 > ```
2360 > aaa
2361
2362 bbb
2363 html: |-
2364 <blockquote>
2365 <pre><code>aaa
2366 </code></pre>
2367 </blockquote>
2368 <p>bbb</p>
2369 - title: Fenced code blocks - example 129
2370 mdast:
2371 type: root
2372 children:
2373 - type: code
2374 lang: ''
2375 value: "\n "
2376
2377 myst: |
2378 ```
2379
2380
2381 ```
2382 html: |-
2383 <pre><code>
2384
2385 </code></pre>
2386 - title: Fenced code blocks - example 130
2387 mdast:
2388 type: root
2389 children:
2390 - type: code
2391 lang: ''
2392 value: ''
2393 myst: |
2394 ```
2395 ```
2396 html: |-
2397 <pre><code></code></pre>
2398 - title: Fenced code blocks - example 131
2399 mdast:
2400 type: root
2401 children:
2402 - type: code
2403 lang: ''
2404 value: |-
2405 aaa
2406 aaa
2407 myst: |2
2408 ```
2409 aaa
2410 aaa
2411 ```
2412 html: |-
2413 <pre><code>aaa
2414 aaa
2415 </code></pre>
2416 - title: Fenced code blocks - example 132
2417 mdast:
2418 type: root
2419 children:
2420 - type: code
2421 lang: ''
2422 value: |-
2423 aaa
2424 aaa
2425 aaa
2426 myst: |2
2427 ```
2428 aaa
2429 aaa
2430 aaa
2431 ```
2432 html: |-
2433 <pre><code>aaa
2434 aaa
2435 aaa
2436 </code></pre>
2437 - title: Fenced code blocks - example 133
2438 mdast:
2439 type: root
2440 children:
2441 - type: code
2442 lang: ''
2443 value: |-
2444 aaa
2445 aaa
2446 aaa
2447 myst: |2
2448 ```
2449 aaa
2450 aaa
2451 aaa
2452 ```
2453 html: |-
2454 <pre><code>aaa
2455 aaa
2456 aaa
2457 </code></pre>
2458 - title: Fenced code blocks - example 134
2459 mdast:
2460 type: root
2461 children:
2462 - type: code
2463 lang: ''
2464 value: |-
2465 ```
2466 aaa
2467 ```
2468 myst: |2
2469 ```
2470 aaa
2471 ```
2472 html: |-
2473 <pre><code>```
2474 aaa
2475 ```
2476 </code></pre>
2477 - title: Fenced code blocks - example 135
2478 mdast:
2479 type: root
2480 children:
2481 - type: code
2482 lang: ''
2483 value: aaa
2484 myst: |
2485 ```
2486 aaa
2487 ```
2488 html: |-
2489 <pre><code>aaa
2490 </code></pre>
2491 - title: Fenced code blocks - example 136
2492 mdast:
2493 type: root
2494 children:
2495 - type: code
2496 lang: ''
2497 value: aaa
2498 myst: |2
2499 ```
2500 aaa
2501 ```
2502 html: |-
2503 <pre><code>aaa
2504 </code></pre>
2505 - title: Fenced code blocks - example 137
2506 mdast:
2507 type: root
2508 children:
2509 - type: code
2510 lang: ''
2511 value: |-
2512 aaa
2513 ```
2514 myst: |
2515 ```
2516 aaa
2517 ```
2518 html: |-
2519 <pre><code>aaa
2520 ```
2521 </code></pre>
2522 - title: Fenced code blocks - example 138
2523 mdast:
2524 type: root
2525 children:
2526 - type: paragraph
2527 children:
2528 - type: inlineCode
2529 value: ' '
2530 - type: text
2531 value: |-
2532
2533 aaa
2534 myst: |
2535 ``` ```
2536 aaa
2537 html: |-
2538 <p><code> </code>
2539 aaa</p>
2540 - title: Fenced code blocks - example 139
2541 mdast:
2542 type: root
2543 children:
2544 - type: code
2545 lang: ''
2546 value: |-
2547 aaa
2548 ~~~ ~~
2549 myst: |
2550 ~~~~~~
2551 aaa
2552 ~~~ ~~
2553 html: |-
2554 <pre><code>aaa
2555 ~~~ ~~
2556 </code></pre>
2557 - title: Fenced code blocks - example 140
2558 mdast:
2559 type: root
2560 children:
2561 - type: paragraph
2562 children:
2563 - type: text
2564 value: foo
2565 - type: code
2566 lang: ''
2567 value: bar
2568 - type: paragraph
2569 children:
2570 - type: text
2571 value: baz
2572 myst: |
2573 foo
2574 ```
2575 bar
2576 ```
2577 baz
2578 html: |-
2579 <p>foo</p>
2580 <pre><code>bar
2581 </code></pre>
2582 <p>baz</p>
2583 - title: Fenced code blocks - example 141
2584 mdast:
2585 type: root
2586 children:
2587 - type: heading
2588 depth: 2
2589 children:
2590 - type: text
2591 value: foo
2592 - type: code
2593 lang: ''
2594 value: bar
2595 - type: heading
2596 depth: 1
2597 children:
2598 - type: text
2599 value: baz
2600 myst: |
2601 foo
2602 ---
2603 ~~~
2604 bar
2605 ~~~
2606 # baz
2607 html: |-
2608 <h2>foo</h2>
2609 <pre><code>bar
2610 </code></pre>
2611 <h1>baz</h1>
2612 - title: Fenced code blocks - example 142
2613 mdast:
2614 type: root
2615 children:
2616 - type: code
2617 lang: ruby
2618 value: |-
2619 def foo(x)
2620 return 3
2621 end
2622 myst: |
2623 ```ruby
2624 def foo(x)
2625 return 3
2626 end
2627 ```
2628 html: |-
2629 <pre><code class="language-ruby">def foo(x)
2630 return 3
2631 end
2632 </code></pre>
2633 - title: Fenced code blocks - example 143
2634 mdast:
2635 type: root
2636 children:
2637 - type: code
2638 lang: ruby
2639 value: |-
2640 def foo(x)
2641 return 3
2642 end
2643 myst: |
2644 ~~~~ ruby startline=3 $%@#$
2645 def foo(x)
2646 return 3
2647 end
2648 ~~~~~~~
2649 html: |-
2650 <pre><code class="language-ruby">def foo(x)
2651 return 3
2652 end
2653 </code></pre>
2654 - title: Fenced code blocks - example 144
2655 mdast:
2656 type: root
2657 children:
2658 - type: code
2659 lang: ;
2660 value: ''
2661 myst: |
2662 ````;
2663 ````
2664 html: |-
2665 <pre><code class="language-;"></code></pre>
2666 - title: Fenced code blocks - example 145
2667 mdast:
2668 type: root
2669 children:
2670 - type: paragraph
2671 children:
2672 - type: inlineCode
2673 value: aa
2674 - type: text
2675 value: |-
2676
2677 foo
2678 myst: |
2679 ``` aa ```
2680 foo
2681 html: |-
2682 <p><code>aa</code>
2683 foo</p>
2684 - title: Fenced code blocks - example 146
2685 mdast:
2686 type: root
2687 children:
2688 - type: code
2689 lang: aa
2690 value: foo
2691 myst: |
2692 ~~~ aa ``` ~~~
2693 foo
2694 ~~~
2695 html: |-
2696 <pre><code class="language-aa">foo
2697 </code></pre>
2698 - title: Fenced code blocks - example 147
2699 mdast:
2700 type: root
2701 children:
2702 - type: code
2703 lang: ''
2704 value: '``` aaa'
2705 myst: |
2706 ```
2707 ``` aaa
2708 ```
2709 html: |-
2710 <pre><code>``` aaa
2711 </code></pre>
2712 - title: HTML blocks - example 148
2713 mdast:
2714 type: root
2715 children:
2716 - type: html
2717 value: |-
2718 <table><tr><td>
2719 <pre>
2720 **Hello**,
2721 - type: paragraph
2722 children:
2723 - type: emphasis
2724 children:
2725 - type: text
2726 value: world
2727 - type: text
2728 value: |
2729 .
2730 - type: html
2731 value: </pre>
2732 - type: html
2733 value: </td></tr></table>
2734 myst: |
2735 <table><tr><td>
2736 <pre>
2737 **Hello**,
2738
2739 _world_.
2740 </pre>
2741 </td></tr></table>
2742 html: |-
2743 <table><tr><td>
2744 <pre>
2745 **Hello**,
2746 <p><em>world</em>.
2747 </pre></p>
2748 </td></tr></table>
2749 - title: HTML blocks - example 149
2750 mdast:
2751 type: root
2752 children:
2753 - type: html
2754 value: |-
2755 <table>
2756 <tr>
2757 <td>
2758 hi
2759 </td>
2760 </tr>
2761 </table>
2762 - type: paragraph
2763 children:
2764 - type: text
2765 value: okay.
2766 myst: |
2767 <table>
2768 <tr>
2769 <td>
2770 hi
2771 </td>
2772 </tr>
2773 </table>
2774
2775 okay.
2776 html: |-
2777 <table>
2778 <tr>
2779 <td>
2780 hi
2781 </td>
2782 </tr>
2783 </table>
2784 <p>okay.</p>
2785 - title: HTML blocks - example 150
2786 mdast:
2787 type: root
2788 children:
2789 - type: html
2790 value: |2-
2791 <div>
2792 *hello*
2793 <foo><a>
2794 myst: |2
2795 <div>
2796 *hello*
2797 <foo><a>
2798 html: |2-
2799 <div>
2800 *hello*
2801 <foo><a>
2802 - title: HTML blocks - example 151
2803 mdast:
2804 type: root
2805 children:
2806 - type: html
2807 value: |-
2808 </div>
2809 *foo*
2810 myst: |
2811 </div>
2812 *foo*
2813 html: |-
2814 </div>
2815 *foo*
2816 - title: HTML blocks - example 152
2817 mdast:
2818 type: root
2819 children:
2820 - type: html
2821 value: <DIV CLASS="foo">
2822 - type: paragraph
2823 children:
2824 - type: emphasis
2825 children:
2826 - type: text
2827 value: Markdown
2828 - type: html
2829 value: </DIV>
2830 myst: |
2831 <DIV CLASS="foo">
2832
2833 *Markdown*
2834
2835 </DIV>
2836 html: |-
2837 <DIV CLASS="foo">
2838 <p><em>Markdown</em></p>
2839 </DIV>
2840 - title: HTML blocks - example 153
2841 mdast:
2842 type: root
2843 children:
2844 - type: html
2845 value: |-
2846 <div id="foo"
2847 class="bar">
2848 </div>
2849 myst: |
2850 <div id="foo"
2851 class="bar">
2852 </div>
2853 html: |-
2854 <div id="foo"
2855 class="bar">
2856 </div>
2857 - title: HTML blocks - example 154
2858 mdast:
2859 type: root
2860 children:
2861 - type: html
2862 value: |-
2863 <div id="foo" class="bar
2864 baz">
2865 </div>
2866 myst: |
2867 <div id="foo" class="bar
2868 baz">
2869 </div>
2870 html: |-
2871 <div id="foo" class="bar
2872 baz">
2873 </div>
2874 - title: HTML blocks - example 155
2875 mdast:
2876 type: root
2877 children:
2878 - type: html
2879 value: |-
2880 <div>
2881 *foo*
2882 - type: paragraph
2883 children:
2884 - type: emphasis
2885 children:
2886 - type: text
2887 value: bar
2888 myst: |
2889 <div>
2890 *foo*
2891
2892 *bar*
2893 html: |-
2894 <div>
2895 *foo*
2896 <p><em>bar</em></p>
2897 - title: HTML blocks - example 156
2898 mdast:
2899 type: root
2900 children:
2901 - type: html
2902 value: |-
2903 <div id="foo"
2904 *hi*
2905 myst: |
2906 <div id="foo"
2907 *hi*
2908 html: |-
2909 <div id="foo"
2910 *hi*
2911 - title: HTML blocks - example 157
2912 mdast:
2913 type: root
2914 children:
2915 - type: html
2916 value: |-
2917 <div class
2918 foo
2919 myst: |
2920 <div class
2921 foo
2922 html: |-
2923 <div class
2924 foo
2925 - title: HTML blocks - example 158
2926 mdast:
2927 type: root
2928 children:
2929 - type: html
2930 value: |-
2931 <div *???-&&&-<---
2932 *foo*
2933 myst: |
2934 <div *???-&&&-<---
2935 *foo*
2936 html: |-
2937 <div *???-&&&-<---
2938 *foo*
2939 - title: HTML blocks - example 159
2940 mdast:
2941 type: root
2942 children:
2943 - type: html
2944 value: <div><a href="bar">*foo*</a></div>
2945 myst: |
2946 <div><a href="bar">*foo*</a></div>
2947 html: |-
2948 <div><a href="bar">*foo*</a></div>
2949 - title: HTML blocks - example 160
2950 mdast:
2951 type: root
2952 children:
2953 - type: html
2954 value: |-
2955 <table><tr><td>
2956 foo
2957 </td></tr></table>
2958 myst: |
2959 <table><tr><td>
2960 foo
2961 </td></tr></table>
2962 html: |-
2963 <table><tr><td>
2964 foo
2965 </td></tr></table>
2966 - title: HTML blocks - example 161
2967 mdast:
2968 type: root
2969 children:
2970 - type: html
2971 value: |-
2972 <div></div>
2973 ``` c
2974 int x = 33;
2975 ```
2976 myst: |
2977 <div></div>
2978 ``` c
2979 int x = 33;
2980 ```
2981 html: |-
2982 <div></div>
2983 ``` c
2984 int x = 33;
2985 ```
2986 - title: HTML blocks - example 162
2987 mdast:
2988 type: root
2989 children:
2990 - type: html
2991 value: |-
2992 <a href="foo">
2993 *bar*
2994 </a>
2995 myst: |
2996 <a href="foo">
2997 *bar*
2998 </a>
2999 html: |-
3000 <a href="foo">
3001 *bar*
3002 </a>
3003 - title: HTML blocks - example 163
3004 mdast:
3005 type: root
3006 children:
3007 - type: html
3008 value: |-
3009 <Warning>
3010 *bar*
3011 </Warning>
3012 myst: |
3013 <Warning>
3014 *bar*
3015 </Warning>
3016 html: |-
3017 <Warning>
3018 *bar*
3019 </Warning>
3020 - title: HTML blocks - example 164
3021 mdast:
3022 type: root
3023 children:
3024 - type: html
3025 value: |-
3026 <i class="foo">
3027 *bar*
3028 </i>
3029 myst: |
3030 <i class="foo">
3031 *bar*
3032 </i>
3033 html: |-
3034 <i class="foo">
3035 *bar*
3036 </i>
3037 - title: HTML blocks - example 165
3038 mdast:
3039 type: root
3040 children:
3041 - type: html
3042 value: |-
3043 </ins>
3044 *bar*
3045 myst: |
3046 </ins>
3047 *bar*
3048 html: |-
3049 </ins>
3050 *bar*
3051 - title: HTML blocks - example 166
3052 mdast:
3053 type: root
3054 children:
3055 - type: html
3056 value: |-
3057 <del>
3058 *foo*
3059 </del>
3060 myst: |
3061 <del>
3062 *foo*
3063 </del>
3064 html: |-
3065 <del>
3066 *foo*
3067 </del>
3068 - title: HTML blocks - example 167
3069 mdast:
3070 type: root
3071 children:
3072 - type: html
3073 value: <del>
3074 - type: paragraph
3075 children:
3076 - type: emphasis
3077 children:
3078 - type: text
3079 value: foo
3080 - type: html
3081 value: </del>
3082 myst: |
3083 <del>
3084
3085 *foo*
3086
3087 </del>
3088 html: |-
3089 <del>
3090 <p><em>foo</em></p>
3091 </del>
3092 - title: HTML blocks - example 168
3093 mdast:
3094 type: root
3095 children:
3096 - type: paragraph
3097 children:
3098 - type: html
3099 value: <del>
3100 - type: emphasis
3101 children:
3102 - type: text
3103 value: foo
3104 - type: html
3105 value: </del>
3106 myst: |
3107 <del>*foo*</del>
3108 html: |-
3109 <p><del><em>foo</em></del></p>
3110 - title: HTML blocks - example 169
3111 mdast:
3112 type: root
3113 children:
3114 - type: html
3115 value: |-
3116 <pre language="haskell"><code>
3117 import Text.HTML.TagSoup
3118
3119 main :: IO ()
3120 main = print $ parseTags tags
3121 </code></pre>
3122 - type: paragraph
3123 children:
3124 - type: text
3125 value: okay
3126 myst: |
3127 <pre language="haskell"><code>
3128 import Text.HTML.TagSoup
3129
3130 main :: IO ()
3131 main = print $ parseTags tags
3132 </code></pre>
3133 okay
3134 html: |-
3135 <pre language="haskell"><code>
3136 import Text.HTML.TagSoup
3137
3138 main :: IO ()
3139 main = print $ parseTags tags
3140 </code></pre>
3141 <p>okay</p>
3142 - title: HTML blocks - example 170
3143 mdast:
3144 type: root
3145 children:
3146 - type: html
3147 value: |-
3148 <script type="text/javascript">
3149 // JavaScript example
3150
3151 document.getElementById("demo").innerHTML = "Hello JavaScript!";
3152 </script>
3153 - type: paragraph
3154 children:
3155 - type: text
3156 value: okay
3157 myst: |
3158 <script type="text/javascript">
3159 // JavaScript example
3160
3161 document.getElementById("demo").innerHTML = "Hello JavaScript!";
3162 </script>
3163 okay
3164 html: |-
3165 <script type="text/javascript">
3166 // JavaScript example
3167
3168 document.getElementById("demo").innerHTML = "Hello JavaScript!";
3169 </script>
3170 <p>okay</p>
3171 - title: HTML blocks - example 171
3172 mdast:
3173 type: root
3174 children:
3175 - type: html
3176 value: |-
3177 <textarea>
3178
3179 *foo*
3180
3181 _bar_
3182
3183 </textarea>
3184 myst: |
3185 <textarea>
3186
3187 *foo*
3188
3189 _bar_
3190
3191 </textarea>
3192 html: |-
3193 <textarea>
3194
3195 *foo*
3196
3197 _bar_
3198
3199 </textarea>
3200 - title: HTML blocks - example 172
3201 mdast:
3202 type: root
3203 children:
3204 - type: html
3205 value: |-
3206 <style
3207 type="text/css">
3208 h1 {color:red;}
3209
3210 p {color:blue;}
3211 </style>
3212 - type: paragraph
3213 children:
3214 - type: text
3215 value: okay
3216 myst: |
3217 <style
3218 type="text/css">
3219 h1 {color:red;}
3220
3221 p {color:blue;}
3222 </style>
3223 okay
3224 html: |-
3225 <style
3226 type="text/css">
3227 h1 {color:red;}
3228
3229 p {color:blue;}
3230 </style>
3231 <p>okay</p>
3232 - title: HTML blocks - example 173
3233 mdast:
3234 type: root
3235 children:
3236 - type: html
3237 value: |-
3238 <style
3239 type="text/css">
3240
3241 foo
3242 myst: |
3243 <style
3244 type="text/css">
3245
3246 foo
3247 html: |-
3248 <style
3249 type="text/css">
3250
3251 foo
3252 - title: HTML blocks - example 174
3253 mdast:
3254 type: root
3255 children:
3256 - type: blockquote
3257 children:
3258 - type: html
3259 value: |-
3260 <div>
3261 foo
3262 - type: paragraph
3263 children:
3264 - type: text
3265 value: bar
3266 myst: |
3267 > <div>
3268 > foo
3269
3270 bar
3271 html: |-
3272 <blockquote>
3273 <div>
3274 foo
3275 </blockquote>
3276 <p>bar</p>
3277 - title: HTML blocks - example 175
3278 mdast:
3279 type: root
3280 children:
3281 - type: list
3282 ordered: false
3283 spread: false
3284 children:
3285 - type: listItem
3286 spread: true
3287 children:
3288 - type: html
3289 value: <div>
3290 - type: listItem
3291 spread: true
3292 children:
3293 - type: text
3294 value: foo
3295 myst: |
3296 - <div>
3297 - foo
3298 html: |-
3299 <ul>
3300 <li>
3301 <div>
3302 </li>
3303 <li>foo</li>
3304 </ul>
3305 - title: HTML blocks - example 176
3306 mdast:
3307 type: root
3308 children:
3309 - type: html
3310 value: <style>p{color:red;}</style>
3311 - type: paragraph
3312 children:
3313 - type: emphasis
3314 children:
3315 - type: text
3316 value: foo
3317 myst: |
3318 <style>p{color:red;}</style>
3319 *foo*
3320 html: |-
3321 <style>p{color:red;}</style>
3322 <p><em>foo</em></p>
3323 - title: HTML blocks - example 177
3324 mdast:
3325 type: root
3326 children:
3327 - type: html
3328 value: <!-- foo -->*bar*
3329 - type: paragraph
3330 children:
3331 - type: emphasis
3332 children:
3333 - type: text
3334 value: baz
3335 myst: |
3336 <!-- foo -->*bar*
3337 *baz*
3338 html: |-
3339 <!-- foo -->*bar*
3340 <p><em>baz</em></p>
3341 - title: HTML blocks - example 178
3342 mdast:
3343 type: root
3344 children:
3345 - type: html
3346 value: |-
3347 <script>
3348 foo
3349 </script>1. *bar*
3350 myst: |
3351 <script>
3352 foo
3353 </script>1. *bar*
3354 html: |-
3355 <script>
3356 foo
3357 </script>1. *bar*
3358 - title: HTML blocks - example 179
3359 mdast:
3360 type: root
3361 children:
3362 - type: html
3363 value: |-
3364 <!-- Foo
3365
3366 bar
3367 baz -->
3368 - type: paragraph
3369 children:
3370 - type: text
3371 value: okay
3372 myst: |
3373 <!-- Foo
3374
3375 bar
3376 baz -->
3377 okay
3378 html: |-
3379 <!-- Foo
3380
3381 bar
3382 baz -->
3383 <p>okay</p>
3384 - title: HTML blocks - example 180
3385 mdast:
3386 type: root
3387 children:
3388 - type: html
3389 value: |-
3390 <?php
3391
3392 echo '>';
3393
3394 ?>
3395 - type: paragraph
3396 children:
3397 - type: text
3398 value: okay
3399 myst: |
3400 <?php
3401
3402 echo '>';
3403
3404 ?>
3405 okay
3406 html: |-
3407 <?php
3408
3409 echo '>';
3410
3411 ?>
3412 <p>okay</p>
3413 - title: HTML blocks - example 181
3414 mdast:
3415 type: root
3416 children:
3417 - type: html
3418 value: <!DOCTYPE html>
3419 myst: |
3420 <!DOCTYPE html>
3421 html: |-
3422 <!DOCTYPE html>
3423 - title: HTML blocks - example 182
3424 mdast:
3425 type: root
3426 children:
3427 - type: html
3428 value: |-
3429 <![CDATA[
3430 function matchwo(a,b)
3431 {
3432 if (a < b && a < 0) then {
3433 return 1;
3434
3435 } else {
3436
3437 return 0;
3438 }
3439 }
3440 ]]>
3441 - type: paragraph
3442 children:
3443 - type: text
3444 value: okay
3445 myst: |
3446 <![CDATA[
3447 function matchwo(a,b)
3448 {
3449 if (a < b && a < 0) then {
3450 return 1;
3451
3452 } else {
3453
3454 return 0;
3455 }
3456 }
3457 ]]>
3458 okay
3459 html: |-
3460 <![CDATA[
3461 function matchwo(a,b)
3462 {
3463 if (a < b && a < 0) then {
3464 return 1;
3465
3466 } else {
3467
3468 return 0;
3469 }
3470 }
3471 ]]>
3472 <p>okay</p>
3473 - title: HTML blocks - example 183
3474 mdast:
3475 type: root
3476 children:
3477 - type: html
3478 value: ' <!-- foo -->'
3479 - type: code
3480 lang: ''
3481 value: <!-- foo -->
3482 myst: |2
3483 <!-- foo -->
3484
3485 <!-- foo -->
3486 html: |2-
3487 <!-- foo -->
3488 <pre><code>&lt;!-- foo --&gt;
3489 </code></pre>
3490 - title: HTML blocks - example 184
3491 mdast:
3492 type: root
3493 children:
3494 - type: html
3495 value: ' <div>'
3496 - type: code
3497 lang: ''
3498 value: <div>
3499 myst: |2
3500 <div>
3501
3502 <div>
3503 html: |2-
3504 <div>
3505 <pre><code>&lt;div&gt;
3506 </code></pre>
3507 - title: HTML blocks - example 185
3508 mdast:
3509 type: root
3510 children:
3511 - type: paragraph
3512 children:
3513 - type: text
3514 value: Foo
3515 - type: html
3516 value: |-
3517 <div>
3518 bar
3519 </div>
3520 myst: |
3521 Foo
3522 <div>
3523 bar
3524 </div>
3525 html: |-
3526 <p>Foo</p>
3527 <div>
3528 bar
3529 </div>
3530 - title: HTML blocks - example 186
3531 mdast:
3532 type: root
3533 children:
3534 - type: html
3535 value: |-
3536 <div>
3537 bar
3538 </div>
3539 *foo*
3540 myst: |
3541 <div>
3542 bar
3543 </div>
3544 *foo*
3545 html: |-
3546 <div>
3547 bar
3548 </div>
3549 *foo*
3550 - title: HTML blocks - example 187
3551 mdast:
3552 type: root
3553 children:
3554 - type: paragraph
3555 children:
3556 - type: text
3557 value: |
3558 Foo
3559 - type: html
3560 value: <a href="bar">
3561 - type: text
3562 value: |-
3563
3564 baz
3565 myst: |
3566 Foo
3567 <a href="bar">
3568 baz
3569 html: |-
3570 <p>Foo
3571 <a href="bar">
3572 baz</p>
3573 - title: HTML blocks - example 188
3574 mdast:
3575 type: root
3576 children:
3577 - type: html
3578 value: <div>
3579 - type: paragraph
3580 children:
3581 - type: emphasis
3582 children:
3583 - type: text
3584 value: Emphasized
3585 - type: text
3586 value: ' text.'
3587 - type: html
3588 value: </div>
3589 myst: |
3590 <div>
3591
3592 *Emphasized* text.
3593
3594 </div>
3595 html: |-
3596 <div>
3597 <p><em>Emphasized</em> text.</p>
3598 </div>
3599 - title: HTML blocks - example 189
3600 mdast:
3601 type: root
3602 children:
3603 - type: html
3604 value: |-
3605 <div>
3606 *Emphasized* text.
3607 </div>
3608 myst: |
3609 <div>
3610 *Emphasized* text.
3611 </div>
3612 html: |-
3613 <div>
3614 *Emphasized* text.
3615 </div>
3616 - title: HTML blocks - example 190
3617 mdast:
3618 type: root
3619 children:
3620 - type: html
3621 value: <table>
3622 - type: html
3623 value: <tr>
3624 - type: html
3625 value: |-
3626 <td>
3627 Hi
3628 </td>
3629 - type: html
3630 value: </tr>
3631 - type: html
3632 value: </table>
3633 myst: |
3634 <table>
3635
3636 <tr>
3637
3638 <td>
3639 Hi
3640 </td>
3641
3642 </tr>
3643
3644 </table>
3645 html: |-
3646 <table>
3647 <tr>
3648 <td>
3649 Hi
3650 </td>
3651 </tr>
3652 </table>
3653 - title: HTML blocks - example 191
3654 mdast:
3655 type: root
3656 children:
3657 - type: html
3658 value: <table>
3659 - type: html
3660 value: ' <tr>'
3661 - type: code
3662 lang: ''
3663 value: |-
3664 <td>
3665 Hi
3666 </td>
3667 - type: html
3668 value: ' </tr>'
3669 - type: html
3670 value: </table>
3671 myst: |
3672 <table>
3673
3674 <tr>
3675
3676 <td>
3677 Hi
3678 </td>
3679
3680 </tr>
3681
3682 </table>
3683 html: |-
3684 <table>
3685 <tr>
3686 <pre><code>&lt;td&gt;
3687 Hi
3688 &lt;/td&gt;
3689 </code></pre>
3690 </tr>
3691 </table>
3692 - title: Link reference definitions - example 192
3693 mdast:
3694 type: root
3695 children:
3696 - type: paragraph
3697 children:
3698 - type: link
3699 url: /url
3700 title: title
3701 children:
3702 - type: text
3703 value: foo
3704 myst: |
3705 [foo]: /url "title"
3706
3707 [foo]
3708 html: |-
3709 <p><a href="/url" title="title">foo</a></p>
3710 - title: Link reference definitions - example 193
3711 mdast:
3712 type: root
3713 children:
3714 - type: paragraph
3715 children:
3716 - type: link
3717 url: /url
3718 title: the title
3719 children:
3720 - type: text
3721 value: foo
3722 myst: |2
3723 [foo]:
3724 /url
3725 'the title'
3726
3727 [foo]
3728 html: |-
3729 <p><a href="/url" title="the title">foo</a></p>
3730 - title: Link reference definitions - example 194
3731 mdast:
3732 type: root
3733 children:
3734 - type: paragraph
3735 children:
3736 - type: link
3737 url: my_(url)
3738 title: title (with parens)
3739 children:
3740 - type: text
3741 value: Foo*bar]
3742 myst: |
3743 [Foo*bar\]]:my_(url) 'title (with parens)'
3744
3745 [Foo*bar\]]
3746 html: |-
3747 <p><a href="my_(url)" title="title (with parens)">Foo*bar]</a></p>
3748 - title: Link reference definitions - example 195
3749 mdast:
3750 type: root
3751 children:
3752 - type: paragraph
3753 children:
3754 - type: link
3755 url: my%20url
3756 title: title
3757 children:
3758 - type: text
3759 value: Foo bar
3760 myst: |
3761 [Foo bar]:
3762 <my url>
3763 'title'
3764
3765 [Foo bar]
3766 html: |-
3767 <p><a href="my%20url" title="title">Foo bar</a></p>
3768 - title: Link reference definitions - example 196
3769 mdast:
3770 type: root
3771 children:
3772 - type: paragraph
3773 children:
3774 - type: link
3775 url: /url
3776 title: |
3777
3778 title
3779 line1
3780 line2
3781 children:
3782 - type: text
3783 value: foo
3784 myst: |
3785 [foo]: /url '
3786 title
3787 line1
3788 line2
3789 '
3790
3791 [foo]
3792 html: |-
3793 <p><a href="/url" title="
3794 title
3795 line1
3796 line2
3797 ">foo</a></p>
3798 - title: Link reference definitions - example 197
3799 mdast:
3800 type: root
3801 children:
3802 - type: paragraph
3803 children:
3804 - type: text
3805 value: "[foo]: /url 'title"
3806 - type: paragraph
3807 children:
3808 - type: text
3809 value: with blank line'
3810 - type: paragraph
3811 children:
3812 - type: text
3813 value: '[foo]'
3814 myst: |
3815 [foo]: /url 'title
3816
3817 with blank line'
3818
3819 [foo]
3820 html: |-
3821 <p>[foo]: /url 'title</p>
3822 <p>with blank line'</p>
3823 <p>[foo]</p>
3824 - title: Link reference definitions - example 198
3825 mdast:
3826 type: root
3827 children:
3828 - type: paragraph
3829 children:
3830 - type: link
3831 url: /url
3832 children:
3833 - type: text
3834 value: foo
3835 myst: |
3836 [foo]:
3837 /url
3838
3839 [foo]
3840 html: |-
3841 <p><a href="/url">foo</a></p>
3842 - title: Link reference definitions - example 199
3843 mdast:
3844 type: root
3845 children:
3846 - type: paragraph
3847 children:
3848 - type: text
3849 value: '[foo]:'
3850 - type: paragraph
3851 children:
3852 - type: text
3853 value: '[foo]'
3854 myst: |
3855 [foo]:
3856
3857 [foo]
3858 html: |-
3859 <p>[foo]:</p>
3860 <p>[foo]</p>
3861 - title: Link reference definitions - example 200
3862 mdast:
3863 type: root
3864 children:
3865 - type: paragraph
3866 children:
3867 - type: link
3868 url: ''
3869 children:
3870 - type: text
3871 value: foo
3872 myst: |
3873 [foo]: <>
3874
3875 [foo]
3876 html: |-
3877 <p><a href="">foo</a></p>
3878 - title: Link reference definitions - example 201
3879 mdast:
3880 type: root
3881 children:
3882 - type: paragraph
3883 children:
3884 - type: text
3885 value: '[foo]: '
3886 - type: html
3887 value: <bar>
3888 - type: text
3889 value: (baz)
3890 - type: paragraph
3891 children:
3892 - type: text
3893 value: '[foo]'
3894 myst: |
3895 [foo]: <bar>(baz)
3896
3897 [foo]
3898 html: |-
3899 <p>[foo]: <bar>(baz)</p>
3900 <p>[foo]</p>
3901 - title: Link reference definitions - example 202
3902 mdast:
3903 type: root
3904 children:
3905 - type: paragraph
3906 children:
3907 - type: link
3908 url: /url%5Cbar*baz
3909 title: foo"bar\baz
3910 children:
3911 - type: text
3912 value: foo
3913 myst: |
3914 [foo]: /url\bar\*baz "foo\"bar\baz"
3915
3916 [foo]
3917 html: |-
3918 <p><a href="/url%5Cbar*baz" title="foo&quot;bar\baz">foo</a></p>
3919 - title: Link reference definitions - example 203
3920 mdast:
3921 type: root
3922 children:
3923 - type: paragraph
3924 children:
3925 - type: link
3926 url: url
3927 children:
3928 - type: text
3929 value: foo
3930 myst: |
3931 [foo]
3932
3933 [foo]: url
3934 html: |-
3935 <p><a href="url">foo</a></p>
3936 - title: Link reference definitions - example 204
3937 mdast:
3938 type: root
3939 children:
3940 - type: paragraph
3941 children:
3942 - type: link
3943 url: first
3944 children:
3945 - type: text
3946 value: foo
3947 myst: |
3948 [foo]
3949
3950 [foo]: first
3951 [foo]: second
3952 html: |-
3953 <p><a href="first">foo</a></p>
3954 - title: Link reference definitions - example 205
3955 mdast:
3956 type: root
3957 children:
3958 - type: paragraph
3959 children:
3960 - type: link
3961 url: /url
3962 children:
3963 - type: text
3964 value: Foo
3965 myst: |
3966 [FOO]: /url
3967
3968 [Foo]
3969 html: |-
3970 <p><a href="/url">Foo</a></p>
3971 - title: Link reference definitions - example 206
3972 mdast:
3973 type: root
3974 children:
3975 - type: paragraph
3976 children:
3977 - type: link
3978 url: /%CF%86%CE%BF%CF%85
3979 children:
3980 - type: text
3981 value: αγω
3982 myst: |
3983 [ΑΓΩ]: /φου
3984
3985 [αγω]
3986 html: |-
3987 <p><a href="/%CF%86%CE%BF%CF%85">αγω</a></p>
3988 - title: Link reference definitions - example 207
3989 mdast:
3990 type: root
3991 children: []
3992 myst: |
3993 [foo]: /url
3994 html: ''
3995 - title: Link reference definitions - example 208
3996 mdast:
3997 type: root
3998 children:
3999 - type: paragraph
4000 children:
4001 - type: text
4002 value: bar
4003 myst: |
4004 [
4005 foo
4006 ]: /url
4007 bar
4008 html: |-
4009 <p>bar</p>
4010 - title: Link reference definitions - example 209
4011 mdast:
4012 type: root
4013 children:
4014 - type: paragraph
4015 children:
4016 - type: text
4017 value: '[foo]: /url "title" ok'
4018 myst: |
4019 [foo]: /url "title" ok
4020 html: |-
4021 <p>[foo]: /url &quot;title&quot; ok</p>
4022 - title: Link reference definitions - example 210
4023 mdast:
4024 type: root
4025 children:
4026 - type: paragraph
4027 children:
4028 - type: text
4029 value: '"title" ok'
4030 myst: |
4031 [foo]: /url
4032 "title" ok
4033 html: |-
4034 <p>&quot;title&quot; ok</p>
4035 - title: Link reference definitions - example 211
4036 mdast:
4037 type: root
4038 children:
4039 - type: code
4040 lang: ''
4041 value: '[foo]: /url "title"'
4042 - type: paragraph
4043 children:
4044 - type: text
4045 value: '[foo]'
4046 myst: |2
4047 [foo]: /url "title"
4048
4049 [foo]
4050 html: |-
4051 <pre><code>[foo]: /url &quot;title&quot;
4052 </code></pre>
4053 <p>[foo]</p>
4054 - title: Link reference definitions - example 212
4055 mdast:
4056 type: root
4057 children:
4058 - type: code
4059 lang: ''
4060 value: '[foo]: /url'
4061 - type: paragraph
4062 children:
4063 - type: text
4064 value: '[foo]'
4065 myst: |
4066 ```
4067 [foo]: /url
4068 ```
4069
4070 [foo]
4071 html: |-
4072 <pre><code>[foo]: /url
4073 </code></pre>
4074 <p>[foo]</p>
4075 - title: Link reference definitions - example 213
4076 mdast:
4077 type: root
4078 children:
4079 - type: paragraph
4080 children:
4081 - type: text
4082 value: |-
4083 Foo
4084 [bar]: /baz
4085 - type: paragraph
4086 children:
4087 - type: text
4088 value: '[bar]'
4089 myst: |
4090 Foo
4091 [bar]: /baz
4092
4093 [bar]
4094 html: |-
4095 <p>Foo
4096 [bar]: /baz</p>
4097 <p>[bar]</p>
4098 - title: Link reference definitions - example 214
4099 mdast:
4100 type: root
4101 children:
4102 - type: heading
4103 depth: 1
4104 children:
4105 - type: link
4106 url: /url
4107 children:
4108 - type: text
4109 value: Foo
4110 - type: blockquote
4111 children:
4112 - type: paragraph
4113 children:
4114 - type: text
4115 value: bar
4116 myst: |
4117 # [Foo]
4118 [foo]: /url
4119 > bar
4120 html: |-
4121 <h1><a href="/url">Foo</a></h1>
4122 <blockquote>
4123 <p>bar</p>
4124 </blockquote>
4125 - title: Link reference definitions - example 215
4126 mdast:
4127 type: root
4128 children:
4129 - type: heading
4130 depth: 1
4131 children:
4132 - type: text
4133 value: bar
4134 - type: paragraph
4135 children:
4136 - type: link
4137 url: /url
4138 children:
4139 - type: text
4140 value: foo
4141 myst: |
4142 [foo]: /url
4143 bar
4144 ===
4145 [foo]
4146 html: |-
4147 <h1>bar</h1>
4148 <p><a href="/url">foo</a></p>
4149 - title: Link reference definitions - example 216
4150 mdast:
4151 type: root
4152 children:
4153 - type: paragraph
4154 children:
4155 - type: text
4156 value: |
4157 ===
4158 - type: link
4159 url: /url
4160 children:
4161 - type: text
4162 value: foo
4163 myst: |
4164 [foo]: /url
4165 ===
4166 [foo]
4167 html: |-
4168 <p>===
4169 <a href="/url">foo</a></p>
4170 - title: Link reference definitions - example 217
4171 mdast:
4172 type: root
4173 children:
4174 - type: paragraph
4175 children:
4176 - type: link
4177 url: /foo-url
4178 title: foo
4179 children:
4180 - type: text
4181 value: foo
4182 - type: text
4183 value: |
4184 ,
4185 - type: link
4186 url: /bar-url
4187 title: bar
4188 children:
4189 - type: text
4190 value: bar
4191 - type: text
4192 value: |
4193 ,
4194 - type: link
4195 url: /baz-url
4196 children:
4197 - type: text
4198 value: baz
4199 myst: |
4200 [foo]: /foo-url "foo"
4201 [bar]: /bar-url
4202 "bar"
4203 [baz]: /baz-url
4204
4205 [foo],
4206 [bar],
4207 [baz]
4208 html: |-
4209 <p><a href="/foo-url" title="foo">foo</a>,
4210 <a href="/bar-url" title="bar">bar</a>,
4211 <a href="/baz-url">baz</a></p>
4212 - title: Link reference definitions - example 218
4213 mdast:
4214 type: root
4215 children:
4216 - type: paragraph
4217 children:
4218 - type: link
4219 url: /url
4220 children:
4221 - type: text
4222 value: foo
4223 - type: blockquote
4224 children: []
4225 myst: |
4226 [foo]
4227
4228 > [foo]: /url
4229 html: |-
4230 <p><a href="/url">foo</a></p>
4231 <blockquote>
4232 </blockquote>
4233 - title: Paragraphs - example 219
4234 mdast:
4235 type: root
4236 children:
4237 - type: paragraph
4238 children:
4239 - type: text
4240 value: aaa
4241 - type: paragraph
4242 children:
4243 - type: text
4244 value: bbb
4245 myst: |
4246 aaa
4247
4248 bbb
4249 html: |-
4250 <p>aaa</p>
4251 <p>bbb</p>
4252 - title: Paragraphs - example 220
4253 mdast:
4254 type: root
4255 children:
4256 - type: paragraph
4257 children:
4258 - type: text
4259 value: |-
4260 aaa
4261 bbb
4262 - type: paragraph
4263 children:
4264 - type: text
4265 value: |-
4266 ccc
4267 ddd
4268 myst: |
4269 aaa
4270 bbb
4271
4272 ccc
4273 ddd
4274 html: |-
4275 <p>aaa
4276 bbb</p>
4277 <p>ccc
4278 ddd</p>
4279 - title: Paragraphs - example 221
4280 mdast:
4281 type: root
4282 children:
4283 - type: paragraph
4284 children:
4285 - type: text
4286 value: aaa
4287 - type: paragraph
4288 children:
4289 - type: text
4290 value: bbb
4291 myst: |
4292 aaa
4293
4294
4295 bbb
4296 html: |-
4297 <p>aaa</p>
4298 <p>bbb</p>
4299 - title: Paragraphs - example 222
4300 mdast:
4301 type: root
4302 children:
4303 - type: paragraph
4304 children:
4305 - type: text
4306 value: |-
4307 aaa
4308 bbb
4309 myst: |2
4310 aaa
4311 bbb
4312 html: |-
4313 <p>aaa
4314 bbb</p>
4315 - title: Paragraphs - example 223
4316 mdast:
4317 type: root
4318 children:
4319 - type: paragraph
4320 children:
4321 - type: text
4322 value: |-
4323 aaa
4324 bbb
4325 ccc
4326 myst: |
4327 aaa
4328 bbb
4329 ccc
4330 html: |-
4331 <p>aaa
4332 bbb
4333 ccc</p>
4334 - title: Paragraphs - example 224
4335 mdast:
4336 type: root
4337 children:
4338 - type: paragraph
4339 children:
4340 - type: text
4341 value: |-
4342 aaa
4343 bbb
4344 myst: |2
4345 aaa
4346 bbb
4347 html: |-
4348 <p>aaa
4349 bbb</p>
4350 - title: Paragraphs - example 225
4351 mdast:
4352 type: root
4353 children:
4354 - type: code
4355 lang: ''
4356 value: aaa
4357 - type: paragraph
4358 children:
4359 - type: text
4360 value: bbb
4361 myst: |2
4362 aaa
4363 bbb
4364 html: |-
4365 <pre><code>aaa
4366 </code></pre>
4367 <p>bbb</p>
4368 - title: Paragraphs - example 226
4369 mdast:
4370 type: root
4371 children:
4372 - type: paragraph
4373 children:
4374 - type: text
4375 value: aaa
4376 - type: break
4377 - type: text
4378 value: bbb
4379 myst: |
4380 aaa
4381 bbb
4382 html: |-
4383 <p>aaa<br />
4384 bbb</p>
4385 - title: Blank lines - example 227
4386 mdast:
4387 type: root
4388 children:
4389 - type: paragraph
4390 children:
4391 - type: text
4392 value: aaa
4393 - type: heading
4394 depth: 1
4395 children:
4396 - type: text
4397 value: aaa
4398 myst: |2
4399
4400
4401 aaa
4402
4403
4404 # aaa
4405
4406 html: |-
4407 <p>aaa</p>
4408 <h1>aaa</h1>
4409 - title: Block quotes - example 228
4410 mdast:
4411 type: root
4412 children:
4413 - type: blockquote
4414 children:
4415 - type: heading
4416 depth: 1
4417 children:
4418 - type: text
4419 value: Foo
4420 - type: paragraph
4421 children:
4422 - type: text
4423 value: |-
4424 bar
4425 baz
4426 myst: |
4427 > # Foo
4428 > bar
4429 > baz
4430 html: |-
4431 <blockquote>
4432 <h1>Foo</h1>
4433 <p>bar
4434 baz</p>
4435 </blockquote>
4436 - title: Block quotes - example 229
4437 mdast:
4438 type: root
4439 children:
4440 - type: blockquote
4441 children:
4442 - type: heading
4443 depth: 1
4444 children:
4445 - type: text
4446 value: Foo
4447 - type: paragraph
4448 children:
4449 - type: text
4450 value: |-
4451 bar
4452 baz
4453 myst: |
4454 ># Foo
4455 >bar
4456 > baz
4457 html: |-
4458 <blockquote>
4459 <h1>Foo</h1>
4460 <p>bar
4461 baz</p>
4462 </blockquote>
4463 - title: Block quotes - example 230
4464 mdast:
4465 type: root
4466 children:
4467 - type: blockquote
4468 children:
4469 - type: heading
4470 depth: 1
4471 children:
4472 - type: text
4473 value: Foo
4474 - type: paragraph
4475 children:
4476 - type: text
4477 value: |-
4478 bar
4479 baz
4480 myst: |2
4481 > # Foo
4482 > bar
4483 > baz
4484 html: |-
4485 <blockquote>
4486 <h1>Foo</h1>
4487 <p>bar
4488 baz</p>
4489 </blockquote>
4490 - title: Block quotes - example 231
4491 mdast:
4492 type: root
4493 children:
4494 - type: code
4495 lang: ''
4496 value: |-
4497 > # Foo
4498 > bar
4499 > baz
4500 myst: |2
4501 > # Foo
4502 > bar
4503 > baz
4504 html: |-
4505 <pre><code>&gt; # Foo
4506 &gt; bar
4507 &gt; baz
4508 </code></pre>
4509 - title: Block quotes - example 232
4510 mdast:
4511 type: root
4512 children:
4513 - type: blockquote
4514 children:
4515 - type: heading
4516 depth: 1
4517 children:
4518 - type: text
4519 value: Foo
4520 - type: paragraph
4521 children:
4522 - type: text
4523 value: |-
4524 bar
4525 baz
4526 myst: |
4527 > # Foo
4528 > bar
4529 baz
4530 html: |-
4531 <blockquote>
4532 <h1>Foo</h1>
4533 <p>bar
4534 baz</p>
4535 </blockquote>
4536 - title: Block quotes - example 233
4537 mdast:
4538 type: root
4539 children:
4540 - type: blockquote
4541 children:
4542 - type: paragraph
4543 children:
4544 - type: text
4545 value: |-
4546 bar
4547 baz
4548 foo
4549 myst: |
4550 > bar
4551 baz
4552 > foo
4553 html: |-
4554 <blockquote>
4555 <p>bar
4556 baz
4557 foo</p>
4558 </blockquote>
4559 - title: Block quotes - example 234
4560 mdast:
4561 type: root
4562 children:
4563 - type: blockquote
4564 children:
4565 - type: paragraph
4566 children:
4567 - type: text
4568 value: foo
4569 - type: thematicBreak
4570 myst: |
4571 > foo
4572 ---
4573 html: |-
4574 <blockquote>
4575 <p>foo</p>
4576 </blockquote>
4577 <hr />
4578 - title: Block quotes - example 235
4579 mdast:
4580 type: root
4581 children:
4582 - type: blockquote
4583 children:
4584 - type: list
4585 ordered: false
4586 spread: false
4587 children:
4588 - type: listItem
4589 spread: true
4590 children:
4591 - type: text
4592 value: foo
4593 - type: list
4594 ordered: false
4595 spread: false
4596 children:
4597 - type: listItem
4598 spread: true
4599 children:
4600 - type: text
4601 value: bar
4602 myst: |
4603 > - foo
4604 - bar
4605 html: |-
4606 <blockquote>
4607 <ul>
4608 <li>foo</li>
4609 </ul>
4610 </blockquote>
4611 <ul>
4612 <li>bar</li>
4613 </ul>
4614 - title: Block quotes - example 236
4615 mdast:
4616 type: root
4617 children:
4618 - type: blockquote
4619 children:
4620 - type: code
4621 lang: ''
4622 value: foo
4623 - type: code
4624 lang: ''
4625 value: bar
4626 myst: |
4627 > foo
4628 bar
4629 html: |-
4630 <blockquote>
4631 <pre><code>foo
4632 </code></pre>
4633 </blockquote>
4634 <pre><code>bar
4635 </code></pre>
4636 - title: Block quotes - example 237
4637 mdast:
4638 type: root
4639 children:
4640 - type: blockquote
4641 children:
4642 - type: code
4643 lang: ''
4644 value: ''
4645 - type: paragraph
4646 children:
4647 - type: text
4648 value: foo
4649 - type: code
4650 lang: ''
4651 value: ''
4652 myst: |
4653 > ```
4654 foo
4655 ```
4656 html: |-
4657 <blockquote>
4658 <pre><code></code></pre>
4659 </blockquote>
4660 <p>foo</p>
4661 <pre><code></code></pre>
4662 - title: Block quotes - example 238
4663 mdast:
4664 type: root
4665 children:
4666 - type: blockquote
4667 children:
4668 - type: paragraph
4669 children:
4670 - type: text
4671 value: |-
4672 foo
4673 - bar
4674 myst: |
4675 > foo
4676 - bar
4677 html: |-
4678 <blockquote>
4679 <p>foo
4680 - bar</p>
4681 </blockquote>
4682 - title: Block quotes - example 239
4683 mdast:
4684 type: root
4685 children:
4686 - type: blockquote
4687 children: []
4688 myst: |
4689 >
4690 html: |-
4691 <blockquote>
4692 </blockquote>
4693 - title: Block quotes - example 240
4694 mdast:
4695 type: root
4696 children:
4697 - type: blockquote
4698 children: []
4699 myst: |
4700 >
4701 >
4702 >
4703 html: |-
4704 <blockquote>
4705 </blockquote>
4706 - title: Block quotes - example 241
4707 mdast:
4708 type: root
4709 children:
4710 - type: blockquote
4711 children:
4712 - type: paragraph
4713 children:
4714 - type: text
4715 value: foo
4716 myst: |
4717 >
4718 > foo
4719 >
4720 html: |-
4721 <blockquote>
4722 <p>foo</p>
4723 </blockquote>
4724 - title: Block quotes - example 242
4725 mdast:
4726 type: root
4727 children:
4728 - type: blockquote
4729 children:
4730 - type: paragraph
4731 children:
4732 - type: text
4733 value: foo
4734 - type: blockquote
4735 children:
4736 - type: paragraph
4737 children:
4738 - type: text
4739 value: bar
4740 myst: |
4741 > foo
4742
4743 > bar
4744 html: |-
4745 <blockquote>
4746 <p>foo</p>
4747 </blockquote>
4748 <blockquote>
4749 <p>bar</p>
4750 </blockquote>
4751 - title: Block quotes - example 243
4752 mdast:
4753 type: root
4754 children:
4755 - type: blockquote
4756 children:
4757 - type: paragraph
4758 children:
4759 - type: text
4760 value: |-
4761 foo
4762 bar
4763 myst: |
4764 > foo
4765 > bar
4766 html: |-
4767 <blockquote>
4768 <p>foo
4769 bar</p>
4770 </blockquote>
4771 - title: Block quotes - example 244
4772 mdast:
4773 type: root
4774 children:
4775 - type: blockquote
4776 children:
4777 - type: paragraph
4778 children:
4779 - type: text
4780 value: foo
4781 - type: paragraph
4782 children:
4783 - type: text
4784 value: bar
4785 myst: |
4786 > foo
4787 >
4788 > bar
4789 html: |-
4790 <blockquote>
4791 <p>foo</p>
4792 <p>bar</p>
4793 </blockquote>
4794 - title: Block quotes - example 245
4795 mdast:
4796 type: root
4797 children:
4798 - type: paragraph
4799 children:
4800 - type: text
4801 value: foo
4802 - type: blockquote
4803 children:
4804 - type: paragraph
4805 children:
4806 - type: text
4807 value: bar
4808 myst: |
4809 foo
4810 > bar
4811 html: |-
4812 <p>foo</p>
4813 <blockquote>
4814 <p>bar</p>
4815 </blockquote>
4816 - title: Block quotes - example 246
4817 mdast:
4818 type: root
4819 children:
4820 - type: blockquote
4821 children:
4822 - type: paragraph
4823 children:
4824 - type: text
4825 value: aaa
4826 - type: thematicBreak
4827 - type: blockquote
4828 children:
4829 - type: paragraph
4830 children:
4831 - type: text
4832 value: bbb
4833 myst: |
4834 > aaa
4835 ***
4836 > bbb
4837 html: |-
4838 <blockquote>
4839 <p>aaa</p>
4840 </blockquote>
4841 <hr />
4842 <blockquote>
4843 <p>bbb</p>
4844 </blockquote>
4845 - title: Block quotes - example 247
4846 mdast:
4847 type: root
4848 children:
4849 - type: blockquote
4850 children:
4851 - type: paragraph
4852 children:
4853 - type: text
4854 value: |-
4855 bar
4856 baz
4857 myst: |
4858 > bar
4859 baz
4860 html: |-
4861 <blockquote>
4862 <p>bar
4863 baz</p>
4864 </blockquote>
4865 - title: Block quotes - example 248
4866 mdast:
4867 type: root
4868 children:
4869 - type: blockquote
4870 children:
4871 - type: paragraph
4872 children:
4873 - type: text
4874 value: bar
4875 - type: paragraph
4876 children:
4877 - type: text
4878 value: baz
4879 myst: |
4880 > bar
4881
4882 baz
4883 html: |-
4884 <blockquote>
4885 <p>bar</p>
4886 </blockquote>
4887 <p>baz</p>
4888 - title: Block quotes - example 249
4889 mdast:
4890 type: root
4891 children:
4892 - type: blockquote
4893 children:
4894 - type: paragraph
4895 children:
4896 - type: text
4897 value: bar
4898 - type: paragraph
4899 children:
4900 - type: text
4901 value: baz
4902 myst: |
4903 > bar
4904 >
4905 baz
4906 html: |-
4907 <blockquote>
4908 <p>bar</p>
4909 </blockquote>
4910 <p>baz</p>
4911 - title: Block quotes - example 250
4912 mdast:
4913 type: root
4914 children:
4915 - type: blockquote
4916 children:
4917 - type: blockquote
4918 children:
4919 - type: blockquote
4920 children:
4921 - type: paragraph
4922 children:
4923 - type: text
4924 value: |-
4925 foo
4926 bar
4927 myst: |
4928 > > > foo
4929 bar
4930 html: |-
4931 <blockquote>
4932 <blockquote>
4933 <blockquote>
4934 <p>foo
4935 bar</p>
4936 </blockquote>
4937 </blockquote>
4938 </blockquote>
4939 - title: Block quotes - example 251
4940 mdast:
4941 type: root
4942 children:
4943 - type: blockquote
4944 children:
4945 - type: blockquote
4946 children:
4947 - type: blockquote
4948 children:
4949 - type: paragraph
4950 children:
4951 - type: text
4952 value: |-
4953 foo
4954 bar
4955 baz
4956 myst: |
4957 >>> foo
4958 > bar
4959 >>baz
4960 html: |-
4961 <blockquote>
4962 <blockquote>
4963 <blockquote>
4964 <p>foo
4965 bar
4966 baz</p>
4967 </blockquote>
4968 </blockquote>
4969 </blockquote>
4970 - title: Block quotes - example 252
4971 mdast:
4972 type: root
4973 children:
4974 - type: blockquote
4975 children:
4976 - type: code
4977 lang: ''
4978 value: code
4979 - type: blockquote
4980 children:
4981 - type: paragraph
4982 children:
4983 - type: text
4984 value: not code
4985 myst: |
4986 > code
4987
4988 > not code
4989 html: |-
4990 <blockquote>
4991 <pre><code>code
4992 </code></pre>
4993 </blockquote>
4994 <blockquote>
4995 <p>not code</p>
4996 </blockquote>
4997 - title: List items - example 253
4998 mdast:
4999 type: root
5000 children:
5001 - type: paragraph
5002 children:
5003 - type: text
5004 value: |-
5005 A paragraph
5006 with two lines.
5007 - type: code
5008 lang: ''
5009 value: indented code
5010 - type: blockquote
5011 children:
5012 - type: paragraph
5013 children:
5014 - type: text
5015 value: A block quote.
5016 myst: |
5017 A paragraph
5018 with two lines.
5019
5020 indented code
5021
5022 > A block quote.
5023 html: |-
5024 <p>A paragraph
5025 with two lines.</p>
5026 <pre><code>indented code
5027 </code></pre>
5028 <blockquote>
5029 <p>A block quote.</p>
5030 </blockquote>
5031 - title: List items - example 254
5032 mdast:
5033 type: root
5034 children:
5035 - type: list
5036 ordered: true
5037 start: 1
5038 spread: false
5039 children:
5040 - type: listItem
5041 spread: true
5042 children:
5043 - type: paragraph
5044 children:
5045 - type: text
5046 value: |-
5047 A paragraph
5048 with two lines.
5049 - type: code
5050 lang: ''
5051 value: indented code
5052 - type: blockquote
5053 children:
5054 - type: paragraph
5055 children:
5056 - type: text
5057 value: A block quote.
5058 myst: |
5059 1. A paragraph
5060 with two lines.
5061
5062 indented code
5063
5064 > A block quote.
5065 html: |-
5066 <ol>
5067 <li>
5068 <p>A paragraph
5069 with two lines.</p>
5070 <pre><code>indented code
5071 </code></pre>
5072 <blockquote>
5073 <p>A block quote.</p>
5074 </blockquote>
5075 </li>
5076 </ol>
5077 - title: List items - example 255
5078 mdast:
5079 type: root
5080 children:
5081 - type: list
5082 ordered: false
5083 spread: false
5084 children:
5085 - type: listItem
5086 spread: true
5087 children:
5088 - type: text
5089 value: one
5090 - type: paragraph
5091 children:
5092 - type: text
5093 value: two
5094 myst: |
5095 - one
5096
5097 two
5098 html: |-
5099 <ul>
5100 <li>one</li>
5101 </ul>
5102 <p>two</p>
5103 - title: List items - example 256
5104 mdast:
5105 type: root
5106 children:
5107 - type: list
5108 ordered: false
5109 spread: false
5110 children:
5111 - type: listItem
5112 spread: true
5113 children:
5114 - type: paragraph
5115 children:
5116 - type: text
5117 value: one
5118 - type: paragraph
5119 children:
5120 - type: text
5121 value: two
5122 myst: |
5123 - one
5124
5125 two
5126 html: |-
5127 <ul>
5128 <li>
5129 <p>one</p>
5130 <p>two</p>
5131 </li>
5132 </ul>
5133 - title: List items - example 257
5134 mdast:
5135 type: root
5136 children:
5137 - type: list
5138 ordered: false
5139 spread: false
5140 children:
5141 - type: listItem
5142 spread: true
5143 children:
5144 - type: text
5145 value: one
5146 - type: code
5147 lang: ''
5148 value: ' two'
5149 myst: |2
5150 - one
5151
5152 two
5153 html: |-
5154 <ul>
5155 <li>one</li>
5156 </ul>
5157 <pre><code> two
5158 </code></pre>
5159 - title: List items - example 258
5160 mdast:
5161 type: root
5162 children:
5163 - type: list
5164 ordered: false
5165 spread: false
5166 children:
5167 - type: listItem
5168 spread: true
5169 children:
5170 - type: paragraph
5171 children:
5172 - type: text
5173 value: one
5174 - type: paragraph
5175 children:
5176 - type: text
5177 value: two
5178 myst: |2
5179 - one
5180
5181 two
5182 html: |-
5183 <ul>
5184 <li>
5185 <p>one</p>
5186 <p>two</p>
5187 </li>
5188 </ul>
5189 - title: List items - example 259
5190 mdast:
5191 type: root
5192 children:
5193 - type: blockquote
5194 children:
5195 - type: blockquote
5196 children:
5197 - type: list
5198 ordered: true
5199 start: 1
5200 spread: false
5201 children:
5202 - type: listItem
5203 spread: true
5204 children:
5205 - type: paragraph
5206 children:
5207 - type: text
5208 value: one
5209 - type: paragraph
5210 children:
5211 - type: text
5212 value: two
5213 myst: |2
5214 > > 1. one
5215 >>
5216 >> two
5217 html: |-
5218 <blockquote>
5219 <blockquote>
5220 <ol>
5221 <li>
5222 <p>one</p>
5223 <p>two</p>
5224 </li>
5225 </ol>
5226 </blockquote>
5227 </blockquote>
5228 - title: List items - example 260
5229 mdast:
5230 type: root
5231 children:
5232 - type: blockquote
5233 children:
5234 - type: blockquote
5235 children:
5236 - type: list
5237 ordered: false
5238 spread: false
5239 children:
5240 - type: listItem
5241 spread: true
5242 children:
5243 - type: text
5244 value: one
5245 - type: paragraph
5246 children:
5247 - type: text
5248 value: two
5249 myst: |
5250 >>- one
5251 >>
5252 > > two
5253 html: |-
5254 <blockquote>
5255 <blockquote>
5256 <ul>
5257 <li>one</li>
5258 </ul>
5259 <p>two</p>
5260 </blockquote>
5261 </blockquote>
5262 - title: List items - example 261
5263 mdast:
5264 type: root
5265 children:
5266 - type: paragraph
5267 children:
5268 - type: text
5269 value: '-one'
5270 - type: paragraph
5271 children:
5272 - type: text
5273 value: 2.two
5274 myst: |
5275 -one
5276
5277 2.two
5278 html: |-
5279 <p>-one</p>
5280 <p>2.two</p>
5281 - title: List items - example 262
5282 mdast:
5283 type: root
5284 children:
5285 - type: list
5286 ordered: false
5287 spread: false
5288 children:
5289 - type: listItem
5290 spread: true
5291 children:
5292 - type: paragraph
5293 children:
5294 - type: text
5295 value: foo
5296 - type: paragraph
5297 children:
5298 - type: text
5299 value: bar
5300 myst: |
5301 - foo
5302
5303
5304 bar
5305 html: |-
5306 <ul>
5307 <li>
5308 <p>foo</p>
5309 <p>bar</p>
5310 </li>
5311 </ul>
5312 - title: List items - example 263
5313 mdast:
5314 type: root
5315 children:
5316 - type: list
5317 ordered: true
5318 start: 1
5319 spread: false
5320 children:
5321 - type: listItem
5322 spread: true
5323 children:
5324 - type: paragraph
5325 children:
5326 - type: text
5327 value: foo
5328 - type: code
5329 lang: ''
5330 value: bar
5331 - type: paragraph
5332 children:
5333 - type: text
5334 value: baz
5335 - type: blockquote
5336 children:
5337 - type: paragraph
5338 children:
5339 - type: text
5340 value: bam
5341 myst: |
5342 1. foo
5343
5344 ```
5345 bar
5346 ```
5347
5348 baz
5349
5350 > bam
5351 html: |-
5352 <ol>
5353 <li>
5354 <p>foo</p>
5355 <pre><code>bar
5356 </code></pre>
5357 <p>baz</p>
5358 <blockquote>
5359 <p>bam</p>
5360 </blockquote>
5361 </li>
5362 </ol>
5363 - title: List items - example 264
5364 mdast:
5365 type: root
5366 children:
5367 - type: list
5368 ordered: false
5369 spread: false
5370 children:
5371 - type: listItem
5372 spread: true
5373 children:
5374 - type: paragraph
5375 children:
5376 - type: text
5377 value: Foo
5378 - type: code
5379 lang: ''
5380 value: |-
5381 bar
5382
5383
5384 baz
5385 myst: |
5386 - Foo
5387
5388 bar
5389
5390
5391 baz
5392 html: |-
5393 <ul>
5394 <li>
5395 <p>Foo</p>
5396 <pre><code>bar
5397
5398
5399 baz
5400 </code></pre>
5401 </li>
5402 </ul>
5403 - title: List items - example 265
5404 mdast:
5405 type: root
5406 children:
5407 - type: list
5408 ordered: true
5409 start: 123456789
5410 spread: false
5411 children:
5412 - type: listItem
5413 spread: true
5414 children:
5415 - type: text
5416 value: ok
5417 myst: |
5418 123456789. ok
5419 html: |-
5420 <ol start="123456789">
5421 <li>ok</li>
5422 </ol>
5423 - title: List items - example 266
5424 mdast:
5425 type: root
5426 children:
5427 - type: paragraph
5428 children:
5429 - type: text
5430 value: 1234567890. not ok
5431 myst: |
5432 1234567890. not ok
5433 html: |-
5434 <p>1234567890. not ok</p>
5435 - title: List items - example 267
5436 mdast:
5437 type: root
5438 children:
5439 - type: list
5440 ordered: true
5441 start: 0
5442 spread: false
5443 children:
5444 - type: listItem
5445 spread: true
5446 children:
5447 - type: text
5448 value: ok
5449 myst: |
5450 0. ok
5451 html: |-
5452 <ol start="0">
5453 <li>ok</li>
5454 </ol>
5455 - title: List items - example 268
5456 mdast:
5457 type: root
5458 children:
5459 - type: list
5460 ordered: true
5461 start: 3
5462 spread: false
5463 children:
5464 - type: listItem
5465 spread: true
5466 children:
5467 - type: text
5468 value: ok
5469 myst: |
5470 003. ok
5471 html: |-
5472 <ol start="3">
5473 <li>ok</li>
5474 </ol>
5475 - title: List items - example 269
5476 mdast:
5477 type: root
5478 children:
5479 - type: paragraph
5480 children:
5481 - type: text
5482 value: '-1. not ok'
5483 myst: |
5484 -1. not ok
5485 html: |-
5486 <p>-1. not ok</p>
5487 - title: List items - example 270
5488 mdast:
5489 type: root
5490 children:
5491 - type: list
5492 ordered: false
5493 spread: false
5494 children:
5495 - type: listItem
5496 spread: true
5497 children:
5498 - type: paragraph
5499 children:
5500 - type: text
5501 value: foo
5502 - type: code
5503 lang: ''
5504 value: bar
5505 myst: |
5506 - foo
5507
5508 bar
5509 html: |-
5510 <ul>
5511 <li>
5512 <p>foo</p>
5513 <pre><code>bar
5514 </code></pre>
5515 </li>
5516 </ul>
5517 - title: List items - example 271
5518 mdast:
5519 type: root
5520 children:
5521 - type: list
5522 ordered: true
5523 start: 10
5524 spread: false
5525 children:
5526 - type: listItem
5527 spread: true
5528 children:
5529 - type: paragraph
5530 children:
5531 - type: text
5532 value: foo
5533 - type: code
5534 lang: ''
5535 value: bar
5536 myst: |2
5537 10. foo
5538
5539 bar
5540 html: |-
5541 <ol start="10">
5542 <li>
5543 <p>foo</p>
5544 <pre><code>bar
5545 </code></pre>
5546 </li>
5547 </ol>
5548 - title: List items - example 272
5549 mdast:
5550 type: root
5551 children:
5552 - type: code
5553 lang: ''
5554 value: indented code
5555 - type: paragraph
5556 children:
5557 - type: text
5558 value: paragraph
5559 - type: code
5560 lang: ''
5561 value: more code
5562 myst: |2
5563 indented code
5564
5565 paragraph
5566
5567 more code
5568 html: |-
5569 <pre><code>indented code
5570 </code></pre>
5571 <p>paragraph</p>
5572 <pre><code>more code
5573 </code></pre>
5574 - title: List items - example 273
5575 mdast:
5576 type: root
5577 children:
5578 - type: list
5579 ordered: true
5580 start: 1
5581 spread: false
5582 children:
5583 - type: listItem
5584 spread: true
5585 children:
5586 - type: code
5587 lang: ''
5588 value: indented code
5589 - type: paragraph
5590 children:
5591 - type: text
5592 value: paragraph
5593 - type: code
5594 lang: ''
5595 value: more code
5596 myst: |
5597 1. indented code
5598
5599 paragraph
5600
5601 more code
5602 html: |-
5603 <ol>
5604 <li>
5605 <pre><code>indented code
5606 </code></pre>
5607 <p>paragraph</p>
5608 <pre><code>more code
5609 </code></pre>
5610 </li>
5611 </ol>
5612 - title: List items - example 274
5613 mdast:
5614 type: root
5615 children:
5616 - type: list
5617 ordered: true
5618 start: 1
5619 spread: false
5620 children:
5621 - type: listItem
5622 spread: true
5623 children:
5624 - type: code
5625 lang: ''
5626 value: ' indented code'
5627 - type: paragraph
5628 children:
5629 - type: text
5630 value: paragraph
5631 - type: code
5632 lang: ''
5633 value: more code
5634 myst: |
5635 1. indented code
5636
5637 paragraph
5638
5639 more code
5640 html: |-
5641 <ol>
5642 <li>
5643 <pre><code> indented code
5644 </code></pre>
5645 <p>paragraph</p>
5646 <pre><code>more code
5647 </code></pre>
5648 </li>
5649 </ol>
5650 - title: List items - example 275
5651 mdast:
5652 type: root
5653 children:
5654 - type: paragraph
5655 children:
5656 - type: text
5657 value: foo
5658 - type: paragraph
5659 children:
5660 - type: text
5661 value: bar
5662 myst: |2
5663 foo
5664
5665 bar
5666 html: |-
5667 <p>foo</p>
5668 <p>bar</p>
5669 - title: List items - example 276
5670 mdast:
5671 type: root
5672 children:
5673 - type: list
5674 ordered: false
5675 spread: false
5676 children:
5677 - type: listItem
5678 spread: true
5679 children:
5680 - type: text
5681 value: foo
5682 - type: paragraph
5683 children:
5684 - type: text
5685 value: bar
5686 myst: |
5687 - foo
5688
5689 bar
5690 html: |-
5691 <ul>
5692 <li>foo</li>
5693 </ul>
5694 <p>bar</p>
5695 - title: List items - example 277
5696 mdast:
5697 type: root
5698 children:
5699 - type: list
5700 ordered: false
5701 spread: false
5702 children:
5703 - type: listItem
5704 spread: true
5705 children:
5706 - type: paragraph
5707 children:
5708 - type: text
5709 value: foo
5710 - type: paragraph
5711 children:
5712 - type: text
5713 value: bar
5714 myst: |
5715 - foo
5716
5717 bar
5718 html: |-
5719 <ul>
5720 <li>
5721 <p>foo</p>
5722 <p>bar</p>
5723 </li>
5724 </ul>
5725 - title: List items - example 278
5726 mdast:
5727 type: root
5728 children:
5729 - type: list
5730 ordered: false
5731 spread: false
5732 children:
5733 - type: listItem
5734 spread: true
5735 children:
5736 - type: text
5737 value: foo
5738 - type: listItem
5739 spread: true
5740 children:
5741 - type: code
5742 lang: ''
5743 value: bar
5744 - type: listItem
5745 spread: true
5746 children:
5747 - type: code
5748 lang: ''
5749 value: baz
5750 myst: |
5751 -
5752 foo
5753 -
5754 ```
5755 bar
5756 ```
5757 -
5758 baz
5759 html: |-
5760 <ul>
5761 <li>foo</li>
5762 <li>
5763 <pre><code>bar
5764 </code></pre>
5765 </li>
5766 <li>
5767 <pre><code>baz
5768 </code></pre>
5769 </li>
5770 </ul>
5771 - title: List items - example 279
5772 mdast:
5773 type: root
5774 children:
5775 - type: list
5776 ordered: false
5777 spread: false
5778 children:
5779 - type: listItem
5780 spread: true
5781 children:
5782 - type: text
5783 value: foo
5784 myst: |
5785 -
5786 foo
5787 html: |-
5788 <ul>
5789 <li>foo</li>
5790 </ul>
5791 - title: List items - example 280
5792 mdast:
5793 type: root
5794 children:
5795 - type: list
5796 ordered: false
5797 spread: false
5798 children:
5799 - type: listItem
5800 spread: true
5801 children: []
5802 - type: paragraph
5803 children:
5804 - type: text
5805 value: foo
5806 myst: |
5807 -
5808
5809 foo
5810 html: |-
5811 <ul>
5812 <li></li>
5813 </ul>
5814 <p>foo</p>
5815 - title: List items - example 281
5816 mdast:
5817 type: root
5818 children:
5819 - type: list
5820 ordered: false
5821 spread: false
5822 children:
5823 - type: listItem
5824 spread: true
5825 children:
5826 - type: text
5827 value: foo
5828 - type: listItem
5829 spread: true
5830 children: []
5831 - type: listItem
5832 spread: true
5833 children:
5834 - type: text
5835 value: bar
5836 myst: |
5837 - foo
5838 -
5839 - bar
5840 html: |-
5841 <ul>
5842 <li>foo</li>
5843 <li></li>
5844 <li>bar</li>
5845 </ul>
5846 - title: List items - example 282
5847 mdast:
5848 type: root
5849 children:
5850 - type: list
5851 ordered: false
5852 spread: false
5853 children:
5854 - type: listItem
5855 spread: true
5856 children:
5857 - type: text
5858 value: foo
5859 - type: listItem
5860 spread: true
5861 children: []
5862 - type: listItem
5863 spread: true
5864 children:
5865 - type: text
5866 value: bar
5867 myst: |
5868 - foo
5869 -
5870 - bar
5871 html: |-
5872 <ul>
5873 <li>foo</li>
5874 <li></li>
5875 <li>bar</li>
5876 </ul>
5877 - title: List items - example 283
5878 mdast:
5879 type: root
5880 children:
5881 - type: list
5882 ordered: true
5883 start: 1
5884 spread: false
5885 children:
5886 - type: listItem
5887 spread: true
5888 children:
5889 - type: text
5890 value: foo
5891 - type: listItem
5892 spread: true
5893 children: []
5894 - type: listItem
5895 spread: true
5896 children:
5897 - type: text
5898 value: bar
5899 myst: |
5900 1. foo
5901 2.
5902 3. bar
5903 html: |-
5904 <ol>
5905 <li>foo</li>
5906 <li></li>
5907 <li>bar</li>
5908 </ol>
5909 - title: List items - example 284
5910 mdast:
5911 type: root
5912 children:
5913 - type: list
5914 ordered: false
5915 spread: false
5916 children:
5917 - type: listItem
5918 spread: true
5919 children: []
5920 myst: |
5921 *
5922 html: |-
5923 <ul>
5924 <li></li>
5925 </ul>
5926 - title: List items - example 285
5927 mdast:
5928 type: root
5929 children:
5930 - type: paragraph
5931 children:
5932 - type: text
5933 value: |-
5934 foo
5935 *
5936 - type: paragraph
5937 children:
5938 - type: text
5939 value: |-
5940 foo
5941 1.
5942 myst: |
5943 foo
5944 *
5945
5946 foo
5947 1.
5948 html: |-
5949 <p>foo
5950 *</p>
5951 <p>foo
5952 1.</p>
5953 - title: List items - example 286
5954 mdast:
5955 type: root
5956 children:
5957 - type: list
5958 ordered: true
5959 start: 1
5960 spread: false
5961 children:
5962 - type: listItem
5963 spread: true
5964 children:
5965 - type: paragraph
5966 children:
5967 - type: text
5968 value: |-
5969 A paragraph
5970 with two lines.
5971 - type: code
5972 lang: ''
5973 value: indented code
5974 - type: blockquote
5975 children:
5976 - type: paragraph
5977 children:
5978 - type: text
5979 value: A block quote.
5980 myst: |2
5981 1. A paragraph
5982 with two lines.
5983
5984 indented code
5985
5986 > A block quote.
5987 html: |-
5988 <ol>
5989 <li>
5990 <p>A paragraph
5991 with two lines.</p>
5992 <pre><code>indented code
5993 </code></pre>
5994 <blockquote>
5995 <p>A block quote.</p>
5996 </blockquote>
5997 </li>
5998 </ol>
5999 - title: List items - example 287
6000 mdast:
6001 type: root
6002 children:
6003 - type: list
6004 ordered: true
6005 start: 1
6006 spread: false
6007 children:
6008 - type: listItem
6009 spread: true
6010 children:
6011 - type: paragraph
6012 children:
6013 - type: text
6014 value: |-
6015 A paragraph
6016 with two lines.
6017 - type: code
6018 lang: ''
6019 value: indented code
6020 - type: blockquote
6021 children:
6022 - type: paragraph
6023 children:
6024 - type: text
6025 value: A block quote.
6026 myst: |2
6027 1. A paragraph
6028 with two lines.
6029
6030 indented code
6031
6032 > A block quote.
6033 html: |-
6034 <ol>
6035 <li>
6036 <p>A paragraph
6037 with two lines.</p>
6038 <pre><code>indented code
6039 </code></pre>
6040 <blockquote>
6041 <p>A block quote.</p>
6042 </blockquote>
6043 </li>
6044 </ol>
6045 - title: List items - example 288
6046 mdast:
6047 type: root
6048 children:
6049 - type: list
6050 ordered: true
6051 start: 1
6052 spread: false
6053 children:
6054 - type: listItem
6055 spread: true
6056 children:
6057 - type: paragraph
6058 children:
6059 - type: text
6060 value: |-
6061 A paragraph
6062 with two lines.
6063 - type: code
6064 lang: ''
6065 value: indented code
6066 - type: blockquote
6067 children:
6068 - type: paragraph
6069 children:
6070 - type: text
6071 value: A block quote.
6072 myst: |2
6073 1. A paragraph
6074 with two lines.
6075
6076 indented code
6077
6078 > A block quote.
6079 html: |-
6080 <ol>
6081 <li>
6082 <p>A paragraph
6083 with two lines.</p>
6084 <pre><code>indented code
6085 </code></pre>
6086 <blockquote>
6087 <p>A block quote.</p>
6088 </blockquote>
6089 </li>
6090 </ol>
6091 - title: List items - example 289
6092 mdast:
6093 type: root
6094 children:
6095 - type: code
6096 lang: ''
6097 value: |-
6098 1. A paragraph
6099 with two lines.
6100
6101 indented code
6102
6103 > A block quote.
6104 myst: |2
6105 1. A paragraph
6106 with two lines.
6107
6108 indented code
6109
6110 > A block quote.
6111 html: |-
6112 <pre><code>1. A paragraph
6113 with two lines.
6114
6115 indented code
6116
6117 &gt; A block quote.
6118 </code></pre>
6119 - title: List items - example 290
6120 mdast:
6121 type: root
6122 children:
6123 - type: list
6124 ordered: true
6125 start: 1
6126 spread: false
6127 children:
6128 - type: listItem
6129 spread: true
6130 children:
6131 - type: paragraph
6132 children:
6133 - type: text
6134 value: |-
6135 A paragraph
6136 with two lines.
6137 - type: code
6138 lang: ''
6139 value: indented code
6140 - type: blockquote
6141 children:
6142 - type: paragraph
6143 children:
6144 - type: text
6145 value: A block quote.
6146 myst: |2
6147 1. A paragraph
6148 with two lines.
6149
6150 indented code
6151
6152 > A block quote.
6153 html: |-
6154 <ol>
6155 <li>
6156 <p>A paragraph
6157 with two lines.</p>
6158 <pre><code>indented code
6159 </code></pre>
6160 <blockquote>
6161 <p>A block quote.</p>
6162 </blockquote>
6163 </li>
6164 </ol>
6165 - title: List items - example 291
6166 mdast:
6167 type: root
6168 children:
6169 - type: list
6170 ordered: true
6171 start: 1
6172 spread: false
6173 children:
6174 - type: listItem
6175 spread: true
6176 children:
6177 - type: text
6178 value: |-
6179 A paragraph
6180 with two lines.
6181 myst: |2
6182 1. A paragraph
6183 with two lines.
6184 html: |-
6185 <ol>
6186 <li>A paragraph
6187 with two lines.</li>
6188 </ol>
6189 - title: List items - example 292
6190 mdast:
6191 type: root
6192 children:
6193 - type: blockquote
6194 children:
6195 - type: list
6196 ordered: true
6197 start: 1
6198 spread: false
6199 children:
6200 - type: listItem
6201 spread: true
6202 children:
6203 - type: blockquote
6204 children:
6205 - type: paragraph
6206 children:
6207 - type: text
6208 value: |-
6209 Blockquote
6210 continued here.
6211 myst: |
6212 > 1. > Blockquote
6213 continued here.
6214 html: |-
6215 <blockquote>
6216 <ol>
6217 <li>
6218 <blockquote>
6219 <p>Blockquote
6220 continued here.</p>
6221 </blockquote>
6222 </li>
6223 </ol>
6224 </blockquote>
6225 - title: List items - example 293
6226 mdast:
6227 type: root
6228 children:
6229 - type: blockquote
6230 children:
6231 - type: list
6232 ordered: true
6233 start: 1
6234 spread: false
6235 children:
6236 - type: listItem
6237 spread: true
6238 children:
6239 - type: blockquote
6240 children:
6241 - type: paragraph
6242 children:
6243 - type: text
6244 value: |-
6245 Blockquote
6246 continued here.
6247 myst: |
6248 > 1. > Blockquote
6249 > continued here.
6250 html: |-
6251 <blockquote>
6252 <ol>
6253 <li>
6254 <blockquote>
6255 <p>Blockquote
6256 continued here.</p>
6257 </blockquote>
6258 </li>
6259 </ol>
6260 </blockquote>
6261 - title: List items - example 294
6262 mdast:
6263 type: root
6264 children:
6265 - type: list
6266 ordered: false
6267 spread: false
6268 children:
6269 - type: listItem
6270 spread: true
6271 children:
6272 - type: text
6273 value: foo
6274 - type: list
6275 ordered: false
6276 spread: false
6277 children:
6278 - type: listItem
6279 spread: true
6280 children:
6281 - type: text
6282 value: bar
6283 - type: list
6284 ordered: false
6285 spread: false
6286 children:
6287 - type: listItem
6288 spread: true
6289 children:
6290 - type: text
6291 value: baz
6292 - type: list
6293 ordered: false
6294 spread: false
6295 children:
6296 - type: listItem
6297 spread: true
6298 children:
6299 - type: text
6300 value: boo
6301 myst: |
6302 - foo
6303 - bar
6304 - baz
6305 - boo
6306 html: |-
6307 <ul>
6308 <li>foo
6309 <ul>
6310 <li>bar
6311 <ul>
6312 <li>baz
6313 <ul>
6314 <li>boo</li>
6315 </ul>
6316 </li>
6317 </ul>
6318 </li>
6319 </ul>
6320 </li>
6321 </ul>
6322 - title: List items - example 295
6323 mdast:
6324 type: root
6325 children:
6326 - type: list
6327 ordered: false
6328 spread: false
6329 children:
6330 - type: listItem
6331 spread: true
6332 children:
6333 - type: text
6334 value: foo
6335 - type: listItem
6336 spread: true
6337 children:
6338 - type: text
6339 value: bar
6340 - type: listItem
6341 spread: true
6342 children:
6343 - type: text
6344 value: baz
6345 - type: listItem
6346 spread: true
6347 children:
6348 - type: text
6349 value: boo
6350 myst: |
6351 - foo
6352 - bar
6353 - baz
6354 - boo
6355 html: |-
6356 <ul>
6357 <li>foo</li>
6358 <li>bar</li>
6359 <li>baz</li>
6360 <li>boo</li>
6361 </ul>
6362 - title: List items - example 296
6363 mdast:
6364 type: root
6365 children:
6366 - type: list
6367 ordered: true
6368 start: 10
6369 spread: false
6370 children:
6371 - type: listItem
6372 spread: true
6373 children:
6374 - type: text
6375 value: foo
6376 - type: list
6377 ordered: false
6378 spread: false
6379 children:
6380 - type: listItem
6381 spread: true
6382 children:
6383 - type: text
6384 value: bar
6385 myst: |
6386 10) foo
6387 - bar
6388 html: |-
6389 <ol start="10">
6390 <li>foo
6391 <ul>
6392 <li>bar</li>
6393 </ul>
6394 </li>
6395 </ol>
6396 - title: List items - example 297
6397 mdast:
6398 type: root
6399 children:
6400 - type: list
6401 ordered: true
6402 start: 10
6403 spread: false
6404 children:
6405 - type: listItem
6406 spread: true
6407 children:
6408 - type: text
6409 value: foo
6410 - type: list
6411 ordered: false
6412 spread: false
6413 children:
6414 - type: listItem
6415 spread: true
6416 children:
6417 - type: text
6418 value: bar
6419 myst: |
6420 10) foo
6421 - bar
6422 html: |-
6423 <ol start="10">
6424 <li>foo</li>
6425 </ol>
6426 <ul>
6427 <li>bar</li>
6428 </ul>
6429 - title: List items - example 298
6430 mdast:
6431 type: root
6432 children:
6433 - type: list
6434 ordered: false
6435 spread: false
6436 children:
6437 - type: listItem
6438 spread: true
6439 children:
6440 - type: list
6441 ordered: false
6442 spread: false
6443 children:
6444 - type: listItem
6445 spread: true
6446 children:
6447 - type: text
6448 value: foo
6449 myst: |
6450 - - foo
6451 html: |-
6452 <ul>
6453 <li>
6454 <ul>
6455 <li>foo</li>
6456 </ul>
6457 </li>
6458 </ul>
6459 - title: List items - example 299
6460 mdast:
6461 type: root
6462 children:
6463 - type: list
6464 ordered: true
6465 start: 1
6466 spread: false
6467 children:
6468 - type: listItem
6469 spread: true
6470 children:
6471 - type: list
6472 ordered: false
6473 spread: false
6474 children:
6475 - type: listItem
6476 spread: true
6477 children:
6478 - type: list
6479 ordered: true
6480 start: 2
6481 spread: false
6482 children:
6483 - type: listItem
6484 spread: true
6485 children:
6486 - type: text
6487 value: foo
6488 myst: |
6489 1. - 2. foo
6490 html: |-
6491 <ol>
6492 <li>
6493 <ul>
6494 <li>
6495 <ol start="2">
6496 <li>foo</li>
6497 </ol>
6498 </li>
6499 </ul>
6500 </li>
6501 </ol>
6502 - title: List items - example 300
6503 mdast:
6504 type: root
6505 children:
6506 - type: list
6507 ordered: false
6508 spread: false
6509 children:
6510 - type: listItem
6511 spread: true
6512 children:
6513 - type: heading
6514 depth: 1
6515 children:
6516 - type: text
6517 value: Foo
6518 - type: listItem
6519 spread: true
6520 children:
6521 - type: heading
6522 depth: 2
6523 children:
6524 - type: text
6525 value: Bar
6526 - type: text
6527 value: baz
6528 myst: |
6529 - # Foo
6530 - Bar
6531 ---
6532 baz
6533 html: |-
6534 <ul>
6535 <li>
6536 <h1>Foo</h1>
6537 </li>
6538 <li>
6539 <h2>Bar</h2>
6540 baz</li>
6541 </ul>
6542 - title: Lists - example 301
6543 mdast:
6544 type: root
6545 children:
6546 - type: list
6547 ordered: false
6548 spread: false
6549 children:
6550 - type: listItem
6551 spread: true
6552 children:
6553 - type: text
6554 value: foo
6555 - type: listItem
6556 spread: true
6557 children:
6558 - type: text
6559 value: bar
6560 - type: list
6561 ordered: false
6562 spread: false
6563 children:
6564 - type: listItem
6565 spread: true
6566 children:
6567 - type: text
6568 value: baz
6569 myst: |
6570 - foo
6571 - bar
6572 + baz
6573 html: |-
6574 <ul>
6575 <li>foo</li>
6576 <li>bar</li>
6577 </ul>
6578 <ul>
6579 <li>baz</li>
6580 </ul>
6581 - title: Lists - example 302
6582 mdast:
6583 type: root
6584 children:
6585 - type: list
6586 ordered: true
6587 start: 1
6588 spread: false
6589 children:
6590 - type: listItem
6591 spread: true
6592 children:
6593 - type: text
6594 value: foo
6595 - type: listItem
6596 spread: true
6597 children:
6598 - type: text
6599 value: bar
6600 - type: list
6601 ordered: true
6602 start: 3
6603 spread: false
6604 children:
6605 - type: listItem
6606 spread: true
6607 children:
6608 - type: text
6609 value: baz
6610 myst: |
6611 1. foo
6612 2. bar
6613 3) baz
6614 html: |-
6615 <ol>
6616 <li>foo</li>
6617 <li>bar</li>
6618 </ol>
6619 <ol start="3">
6620 <li>baz</li>
6621 </ol>
6622 - title: Lists - example 303
6623 mdast:
6624 type: root
6625 children:
6626 - type: paragraph
6627 children:
6628 - type: text
6629 value: Foo
6630 - type: list
6631 ordered: false
6632 spread: false
6633 children:
6634 - type: listItem
6635 spread: true
6636 children:
6637 - type: text
6638 value: bar
6639 - type: listItem
6640 spread: true
6641 children:
6642 - type: text
6643 value: baz
6644 myst: |
6645 Foo
6646 - bar
6647 - baz
6648 html: |-
6649 <p>Foo</p>
6650 <ul>
6651 <li>bar</li>
6652 <li>baz</li>
6653 </ul>
6654 - title: Lists - example 304
6655 mdast:
6656 type: root
6657 children:
6658 - type: paragraph
6659 children:
6660 - type: text
6661 value: |-
6662 The number of windows in my house is
6663 14. The number of doors is 6.
6664 myst: |
6665 The number of windows in my house is
6666 14. The number of doors is 6.
6667 html: |-
6668 <p>The number of windows in my house is
6669 14. The number of doors is 6.</p>
6670 - title: Lists - example 305
6671 mdast:
6672 type: root
6673 children:
6674 - type: paragraph
6675 children:
6676 - type: text
6677 value: The number of windows in my house is
6678 - type: list
6679 ordered: true
6680 start: 1
6681 spread: false
6682 children:
6683 - type: listItem
6684 spread: true
6685 children:
6686 - type: text
6687 value: The number of doors is 6.
6688 myst: |
6689 The number of windows in my house is
6690 1. The number of doors is 6.
6691 html: |-
6692 <p>The number of windows in my house is</p>
6693 <ol>
6694 <li>The number of doors is 6.</li>
6695 </ol>
6696 - title: Lists - example 306
6697 mdast:
6698 type: root
6699 children:
6700 - type: list
6701 ordered: false
6702 spread: false
6703 children:
6704 - type: listItem
6705 spread: true
6706 children:
6707 - type: paragraph
6708 children:
6709 - type: text
6710 value: foo
6711 - type: listItem
6712 spread: true
6713 children:
6714 - type: paragraph
6715 children:
6716 - type: text
6717 value: bar
6718 - type: listItem
6719 spread: true
6720 children:
6721 - type: paragraph
6722 children:
6723 - type: text
6724 value: baz
6725 myst: |
6726 - foo
6727
6728 - bar
6729
6730
6731 - baz
6732 html: |-
6733 <ul>
6734 <li>
6735 <p>foo</p>
6736 </li>
6737 <li>
6738 <p>bar</p>
6739 </li>
6740 <li>
6741 <p>baz</p>
6742 </li>
6743 </ul>
6744 - title: Lists - example 307
6745 mdast:
6746 type: root
6747 children:
6748 - type: list
6749 ordered: false
6750 spread: false
6751 children:
6752 - type: listItem
6753 spread: true
6754 children:
6755 - type: text
6756 value: foo
6757 - type: list
6758 ordered: false
6759 spread: false
6760 children:
6761 - type: listItem
6762 spread: true
6763 children:
6764 - type: text
6765 value: bar
6766 - type: list
6767 ordered: false
6768 spread: false
6769 children:
6770 - type: listItem
6771 spread: true
6772 children:
6773 - type: paragraph
6774 children:
6775 - type: text
6776 value: baz
6777 - type: paragraph
6778 children:
6779 - type: text
6780 value: bim
6781 myst: |
6782 - foo
6783 - bar
6784 - baz
6785
6786
6787 bim
6788 html: |-
6789 <ul>
6790 <li>foo
6791 <ul>
6792 <li>bar
6793 <ul>
6794 <li>
6795 <p>baz</p>
6796 <p>bim</p>
6797 </li>
6798 </ul>
6799 </li>
6800 </ul>
6801 </li>
6802 </ul>
6803 - title: Lists - example 308
6804 mdast:
6805 type: root
6806 children:
6807 - type: list
6808 ordered: false
6809 spread: false
6810 children:
6811 - type: listItem
6812 spread: true
6813 children:
6814 - type: text
6815 value: foo
6816 - type: listItem
6817 spread: true
6818 children:
6819 - type: text
6820 value: bar
6821 - type: html
6822 value: <!-- -->
6823 - type: list
6824 ordered: false
6825 spread: false
6826 children:
6827 - type: listItem
6828 spread: true
6829 children:
6830 - type: text
6831 value: baz
6832 - type: listItem
6833 spread: true
6834 children:
6835 - type: text
6836 value: bim
6837 myst: |
6838 - foo
6839 - bar
6840
6841 <!-- -->
6842
6843 - baz
6844 - bim
6845 html: |-
6846 <ul>
6847 <li>foo</li>
6848 <li>bar</li>
6849 </ul>
6850 <!-- -->
6851 <ul>
6852 <li>baz</li>
6853 <li>bim</li>
6854 </ul>
6855 - title: Lists - example 309
6856 mdast:
6857 type: root
6858 children:
6859 - type: list
6860 ordered: false
6861 spread: false
6862 children:
6863 - type: listItem
6864 spread: true
6865 children:
6866 - type: paragraph
6867 children:
6868 - type: text
6869 value: foo
6870 - type: paragraph
6871 children:
6872 - type: text
6873 value: notcode
6874 - type: listItem
6875 spread: true
6876 children:
6877 - type: paragraph
6878 children:
6879 - type: text
6880 value: foo
6881 - type: html
6882 value: <!-- -->
6883 - type: code
6884 lang: ''
6885 value: code
6886 myst: |
6887 - foo
6888
6889 notcode
6890
6891 - foo
6892
6893 <!-- -->
6894
6895 code
6896 html: |-
6897 <ul>
6898 <li>
6899 <p>foo</p>
6900 <p>notcode</p>
6901 </li>
6902 <li>
6903 <p>foo</p>
6904 </li>
6905 </ul>
6906 <!-- -->
6907 <pre><code>code
6908 </code></pre>
6909 - title: Lists - example 310
6910 mdast:
6911 type: root
6912 children:
6913 - type: list
6914 ordered: false
6915 spread: false
6916 children:
6917 - type: listItem
6918 spread: true
6919 children:
6920 - type: text
6921 value: a
6922 - type: listItem
6923 spread: true
6924 children:
6925 - type: text
6926 value: b
6927 - type: listItem
6928 spread: true
6929 children:
6930 - type: text
6931 value: c
6932 - type: listItem
6933 spread: true
6934 children:
6935 - type: text
6936 value: d
6937 - type: listItem
6938 spread: true
6939 children:
6940 - type: text
6941 value: e
6942 - type: listItem
6943 spread: true
6944 children:
6945 - type: text
6946 value: f
6947 - type: listItem
6948 spread: true
6949 children:
6950 - type: text
6951 value: g
6952 myst: |
6953 - a
6954 - b
6955 - c
6956 - d
6957 - e
6958 - f
6959 - g
6960 html: |-
6961 <ul>
6962 <li>a</li>
6963 <li>b</li>
6964 <li>c</li>
6965 <li>d</li>
6966 <li>e</li>
6967 <li>f</li>
6968 <li>g</li>
6969 </ul>
6970 - title: Lists - example 311
6971 mdast:
6972 type: root
6973 children:
6974 - type: list
6975 ordered: true
6976 start: 1
6977 spread: false
6978 children:
6979 - type: listItem
6980 spread: true
6981 children:
6982 - type: paragraph
6983 children:
6984 - type: text
6985 value: a
6986 - type: listItem
6987 spread: true
6988 children:
6989 - type: paragraph
6990 children:
6991 - type: text
6992 value: b
6993 - type: listItem
6994 spread: true
6995 children:
6996 - type: paragraph
6997 children:
6998 - type: text
6999 value: c
7000 myst: |
7001 1. a
7002
7003 2. b
7004
7005 3. c
7006 html: |-
7007 <ol>
7008 <li>
7009 <p>a</p>
7010 </li>
7011 <li>
7012 <p>b</p>
7013 </li>
7014 <li>
7015 <p>c</p>
7016 </li>
7017 </ol>
7018 - title: Lists - example 312
7019 mdast:
7020 type: root
7021 children:
7022 - type: list
7023 ordered: false
7024 spread: false
7025 children:
7026 - type: listItem
7027 spread: true
7028 children:
7029 - type: text
7030 value: a
7031 - type: listItem
7032 spread: true
7033 children:
7034 - type: text
7035 value: b
7036 - type: listItem
7037 spread: true
7038 children:
7039 - type: text
7040 value: c
7041 - type: listItem
7042 spread: true
7043 children:
7044 - type: text
7045 value: |-
7046 d
7047 - e
7048 myst: |
7049 - a
7050 - b
7051 - c
7052 - d
7053 - e
7054 html: |-
7055 <ul>
7056 <li>a</li>
7057 <li>b</li>
7058 <li>c</li>
7059 <li>d
7060 - e</li>
7061 </ul>
7062 - title: Lists - example 313
7063 mdast:
7064 type: root
7065 children:
7066 - type: list
7067 ordered: true
7068 start: 1
7069 spread: false
7070 children:
7071 - type: listItem
7072 spread: true
7073 children:
7074 - type: paragraph
7075 children:
7076 - type: text
7077 value: a
7078 - type: listItem
7079 spread: true
7080 children:
7081 - type: paragraph
7082 children:
7083 - type: text
7084 value: b
7085 - type: code
7086 lang: ''
7087 value: 3. c
7088 myst: |
7089 1. a
7090
7091 2. b
7092
7093 3. c
7094 html: |-
7095 <ol>
7096 <li>
7097 <p>a</p>
7098 </li>
7099 <li>
7100 <p>b</p>
7101 </li>
7102 </ol>
7103 <pre><code>3. c
7104 </code></pre>
7105 - title: Lists - example 314
7106 mdast:
7107 type: root
7108 children:
7109 - type: list
7110 ordered: false
7111 spread: false
7112 children:
7113 - type: listItem
7114 spread: true
7115 children:
7116 - type: paragraph
7117 children:
7118 - type: text
7119 value: a
7120 - type: listItem
7121 spread: true
7122 children:
7123 - type: paragraph
7124 children:
7125 - type: text
7126 value: b
7127 - type: listItem
7128 spread: true
7129 children:
7130 - type: paragraph
7131 children:
7132 - type: text
7133 value: c
7134 myst: |
7135 - a
7136 - b
7137
7138 - c
7139 html: |-
7140 <ul>
7141 <li>
7142 <p>a</p>
7143 </li>
7144 <li>
7145 <p>b</p>
7146 </li>
7147 <li>
7148 <p>c</p>
7149 </li>
7150 </ul>
7151 - title: Lists - example 315
7152 mdast:
7153 type: root
7154 children:
7155 - type: list
7156 ordered: false
7157 spread: false
7158 children:
7159 - type: listItem
7160 spread: true
7161 children:
7162 - type: paragraph
7163 children:
7164 - type: text
7165 value: a
7166 - type: listItem
7167 spread: true
7168 children: []
7169 - type: listItem
7170 spread: true
7171 children:
7172 - type: paragraph
7173 children:
7174 - type: text
7175 value: c
7176 myst: |
7177 * a
7178 *
7179
7180 * c
7181 html: |-
7182 <ul>
7183 <li>
7184 <p>a</p>
7185 </li>
7186 <li></li>
7187 <li>
7188 <p>c</p>
7189 </li>
7190 </ul>
7191 - title: Lists - example 316
7192 mdast:
7193 type: root
7194 children:
7195 - type: list
7196 ordered: false
7197 spread: false
7198 children:
7199 - type: listItem
7200 spread: true
7201 children:
7202 - type: paragraph
7203 children:
7204 - type: text
7205 value: a
7206 - type: listItem
7207 spread: true
7208 children:
7209 - type: paragraph
7210 children:
7211 - type: text
7212 value: b
7213 - type: paragraph
7214 children:
7215 - type: text
7216 value: c
7217 - type: listItem
7218 spread: true
7219 children:
7220 - type: paragraph
7221 children:
7222 - type: text
7223 value: d
7224 myst: |
7225 - a
7226 - b
7227
7228 c
7229 - d
7230 html: |-
7231 <ul>
7232 <li>
7233 <p>a</p>
7234 </li>
7235 <li>
7236 <p>b</p>
7237 <p>c</p>
7238 </li>
7239 <li>
7240 <p>d</p>
7241 </li>
7242 </ul>
7243 - title: Lists - example 317
7244 mdast:
7245 type: root
7246 children:
7247 - type: list
7248 ordered: false
7249 spread: false
7250 children:
7251 - type: listItem
7252 spread: true
7253 children:
7254 - type: paragraph
7255 children:
7256 - type: text
7257 value: a
7258 - type: listItem
7259 spread: true
7260 children:
7261 - type: paragraph
7262 children:
7263 - type: text
7264 value: b
7265 - type: listItem
7266 spread: true
7267 children:
7268 - type: paragraph
7269 children:
7270 - type: text
7271 value: d
7272 myst: |
7273 - a
7274 - b
7275
7276 [ref]: /url
7277 - d
7278 html: |-
7279 <ul>
7280 <li>
7281 <p>a</p>
7282 </li>
7283 <li>
7284 <p>b</p>
7285 </li>
7286 <li>
7287 <p>d</p>
7288 </li>
7289 </ul>
7290 - title: Lists - example 318
7291 mdast:
7292 type: root
7293 children:
7294 - type: list
7295 ordered: false
7296 spread: false
7297 children:
7298 - type: listItem
7299 spread: true
7300 children:
7301 - type: text
7302 value: a
7303 - type: listItem
7304 spread: true
7305 children:
7306 - type: code
7307 lang: ''
7308 value: |+
7309 b
7310
7311 - type: listItem
7312 spread: true
7313 children:
7314 - type: text
7315 value: c
7316 myst: |
7317 - a
7318 - ```
7319 b
7320
7321
7322 ```
7323 - c
7324 html: |-
7325 <ul>
7326 <li>a</li>
7327 <li>
7328 <pre><code>b
7329
7330
7331 </code></pre>
7332 </li>
7333 <li>c</li>
7334 </ul>
7335 - title: Lists - example 319
7336 mdast:
7337 type: root
7338 children:
7339 - type: list
7340 ordered: false
7341 spread: false
7342 children:
7343 - type: listItem
7344 spread: true
7345 children:
7346 - type: text
7347 value: a
7348 - type: list
7349 ordered: false
7350 spread: false
7351 children:
7352 - type: listItem
7353 spread: true
7354 children:
7355 - type: paragraph
7356 children:
7357 - type: text
7358 value: b
7359 - type: paragraph
7360 children:
7361 - type: text
7362 value: c
7363 - type: listItem
7364 spread: true
7365 children:
7366 - type: text
7367 value: d
7368 myst: |
7369 - a
7370 - b
7371
7372 c
7373 - d
7374 html: |-
7375 <ul>
7376 <li>a
7377 <ul>
7378 <li>
7379 <p>b</p>
7380 <p>c</p>
7381 </li>
7382 </ul>
7383 </li>
7384 <li>d</li>
7385 </ul>
7386 - title: Lists - example 320
7387 mdast:
7388 type: root
7389 children:
7390 - type: list
7391 ordered: false
7392 spread: false
7393 children:
7394 - type: listItem
7395 spread: true
7396 children:
7397 - type: text
7398 value: a
7399 - type: blockquote
7400 children:
7401 - type: paragraph
7402 children:
7403 - type: text
7404 value: b
7405 - type: listItem
7406 spread: true
7407 children:
7408 - type: text
7409 value: c
7410 myst: |
7411 * a
7412 > b
7413 >
7414 * c
7415 html: |-
7416 <ul>
7417 <li>a
7418 <blockquote>
7419 <p>b</p>
7420 </blockquote>
7421 </li>
7422 <li>c</li>
7423 </ul>
7424 - title: Lists - example 321
7425 mdast:
7426 type: root
7427 children:
7428 - type: list
7429 ordered: false
7430 spread: false
7431 children:
7432 - type: listItem
7433 spread: true
7434 children:
7435 - type: text
7436 value: a
7437 - type: blockquote
7438 children:
7439 - type: paragraph
7440 children:
7441 - type: text
7442 value: b
7443 - type: code
7444 lang: ''
7445 value: c
7446 - type: listItem
7447 spread: true
7448 children:
7449 - type: text
7450 value: d
7451 myst: |
7452 - a
7453 > b
7454 ```
7455 c
7456 ```
7457 - d
7458 html: |-
7459 <ul>
7460 <li>a
7461 <blockquote>
7462 <p>b</p>
7463 </blockquote>
7464 <pre><code>c
7465 </code></pre>
7466 </li>
7467 <li>d</li>
7468 </ul>
7469 - title: Lists - example 322
7470 mdast:
7471 type: root
7472 children:
7473 - type: list
7474 ordered: false
7475 spread: false
7476 children:
7477 - type: listItem
7478 spread: true
7479 children:
7480 - type: text
7481 value: a
7482 myst: |
7483 - a
7484 html: |-
7485 <ul>
7486 <li>a</li>
7487 </ul>
7488 - title: Lists - example 323
7489 mdast:
7490 type: root
7491 children:
7492 - type: list
7493 ordered: false
7494 spread: false
7495 children:
7496 - type: listItem
7497 spread: true
7498 children:
7499 - type: text
7500 value: a
7501 - type: list
7502 ordered: false
7503 spread: false
7504 children:
7505 - type: listItem
7506 spread: true
7507 children:
7508 - type: text
7509 value: b
7510 myst: |
7511 - a
7512 - b
7513 html: |-
7514 <ul>
7515 <li>a
7516 <ul>
7517 <li>b</li>
7518 </ul>
7519 </li>
7520 </ul>
7521 - title: Lists - example 324
7522 mdast:
7523 type: root
7524 children:
7525 - type: list
7526 ordered: true
7527 start: 1
7528 spread: false
7529 children:
7530 - type: listItem
7531 spread: true
7532 children:
7533 - type: code
7534 lang: ''
7535 value: foo
7536 - type: paragraph
7537 children:
7538 - type: text
7539 value: bar
7540 myst: |
7541 1. ```
7542 foo
7543 ```
7544
7545 bar
7546 html: |-
7547 <ol>
7548 <li>
7549 <pre><code>foo
7550 </code></pre>
7551 <p>bar</p>
7552 </li>
7553 </ol>
7554 - title: Lists - example 325
7555 mdast:
7556 type: root
7557 children:
7558 - type: list
7559 ordered: false
7560 spread: false
7561 children:
7562 - type: listItem
7563 spread: true
7564 children:
7565 - type: paragraph
7566 children:
7567 - type: text
7568 value: foo
7569 - type: list
7570 ordered: false
7571 spread: false
7572 children:
7573 - type: listItem
7574 spread: true
7575 children:
7576 - type: text
7577 value: bar
7578 - type: paragraph
7579 children:
7580 - type: text
7581 value: baz
7582 myst: |
7583 * foo
7584 * bar
7585
7586 baz
7587 html: |-
7588 <ul>
7589 <li>
7590 <p>foo</p>
7591 <ul>
7592 <li>bar</li>
7593 </ul>
7594 <p>baz</p>
7595 </li>
7596 </ul>
7597 - title: Lists - example 326
7598 mdast:
7599 type: root
7600 children:
7601 - type: list
7602 ordered: false
7603 spread: false
7604 children:
7605 - type: listItem
7606 spread: true
7607 children:
7608 - type: paragraph
7609 children:
7610 - type: text
7611 value: a
7612 - type: list
7613 ordered: false
7614 spread: false
7615 children:
7616 - type: listItem
7617 spread: true
7618 children:
7619 - type: text
7620 value: b
7621 - type: listItem
7622 spread: true
7623 children:
7624 - type: text
7625 value: c
7626 - type: listItem
7627 spread: true
7628 children:
7629 - type: paragraph
7630 children:
7631 - type: text
7632 value: d
7633 - type: list
7634 ordered: false
7635 spread: false
7636 children:
7637 - type: listItem
7638 spread: true
7639 children:
7640 - type: text
7641 value: e
7642 - type: listItem
7643 spread: true
7644 children:
7645 - type: text
7646 value: f
7647 myst: |
7648 - a
7649 - b
7650 - c
7651
7652 - d
7653 - e
7654 - f
7655 html: |-
7656 <ul>
7657 <li>
7658 <p>a</p>
7659 <ul>
7660 <li>b</li>
7661 <li>c</li>
7662 </ul>
7663 </li>
7664 <li>
7665 <p>d</p>
7666 <ul>
7667 <li>e</li>
7668 <li>f</li>
7669 </ul>
7670 </li>
7671 </ul>
7672 - title: Inlines - example 327
7673 mdast:
7674 type: root
7675 children:
7676 - type: paragraph
7677 children:
7678 - type: inlineCode
7679 value: hi
7680 - type: text
7681 value: lo`
7682 myst: |
7683 `hi`lo`
7684 html: |-
7685 <p><code>hi</code>lo`</p>
7686 - title: Code spans - example 328
7687 mdast:
7688 type: root
7689 children:
7690 - type: paragraph
7691 children:
7692 - type: inlineCode
7693 value: foo
7694 myst: |
7695 `foo`
7696 html: |-
7697 <p><code>foo</code></p>
7698 - title: Code spans - example 329
7699 mdast:
7700 type: root
7701 children:
7702 - type: paragraph
7703 children:
7704 - type: inlineCode
7705 value: foo ` bar
7706 myst: |
7707 `` foo ` bar ``
7708 html: |-
7709 <p><code>foo ` bar</code></p>
7710 - title: Code spans - example 330
7711 mdast:
7712 type: root
7713 children:
7714 - type: paragraph
7715 children:
7716 - type: inlineCode
7717 value: '``'
7718 myst: |
7719 ` `` `
7720 html: |-
7721 <p><code>``</code></p>
7722 - title: Code spans - example 331
7723 mdast:
7724 type: root
7725 children:
7726 - type: paragraph
7727 children:
7728 - type: inlineCode
7729 value: ' `` '
7730 myst: |
7731 ` `` `
7732 html: |-
7733 <p><code> `` </code></p>
7734 - title: Code spans - example 332
7735 mdast:
7736 type: root
7737 children:
7738 - type: paragraph
7739 children:
7740 - type: inlineCode
7741 value: ' a'
7742 myst: |
7743 ` a`
7744 html: |-
7745 <p><code> a</code></p>
7746 - title: Code spans - example 333
7747 mdast:
7748 type: root
7749 children:
7750 - type: paragraph
7751 children:
7752 - type: inlineCode
7753 value: ' b '
7754 myst: |
7755 ` b `
7756 html: |-
7757 <p><code> b </code></p>
7758 - title: Code spans - example 334
7759 mdast:
7760 type: root
7761 children:
7762 - type: paragraph
7763 children:
7764 - type: inlineCode
7765 value: ' '
7766 - type: text
7767 value: |+
7768
7769 - type: inlineCode
7770 value: ' '
7771 myst: |
7772 ` `
7773 ` `
7774 html: |-
7775 <p><code> </code>
7776 <code> </code></p>
7777 - title: Code spans - example 335
7778 mdast:
7779 type: root
7780 children:
7781 - type: paragraph
7782 children:
7783 - type: inlineCode
7784 value: foo bar baz
7785 myst: |
7786 ``
7787 foo
7788 bar
7789 baz
7790 ``
7791 html: |-
7792 <p><code>foo bar baz</code></p>
7793 - title: Code spans - example 336
7794 mdast:
7795 type: root
7796 children:
7797 - type: paragraph
7798 children:
7799 - type: inlineCode
7800 value: 'foo '
7801 myst: |
7802 ``
7803 foo
7804 ``
7805 html: |-
7806 <p><code>foo </code></p>
7807 - title: Code spans - example 337
7808 mdast:
7809 type: root
7810 children:
7811 - type: paragraph
7812 children:
7813 - type: inlineCode
7814 value: foo bar baz
7815 myst: |
7816 `foo bar
7817 baz`
7818 html: |-
7819 <p><code>foo bar baz</code></p>
7820 - title: Code spans - example 338
7821 mdast:
7822 type: root
7823 children:
7824 - type: paragraph
7825 children:
7826 - type: inlineCode
7827 value: foo\
7828 - type: text
7829 value: bar`
7830 myst: |
7831 `foo\`bar`
7832 html: |-
7833 <p><code>foo\</code>bar`</p>
7834 - title: Code spans - example 339
7835 mdast:
7836 type: root
7837 children:
7838 - type: paragraph
7839 children:
7840 - type: inlineCode
7841 value: foo`bar
7842 myst: |
7843 ``foo`bar``
7844 html: |-
7845 <p><code>foo`bar</code></p>
7846 - title: Code spans - example 340
7847 mdast:
7848 type: root
7849 children:
7850 - type: paragraph
7851 children:
7852 - type: inlineCode
7853 value: foo `` bar
7854 myst: |
7855 ` foo `` bar `
7856 html: |-
7857 <p><code>foo `` bar</code></p>
7858 - title: Code spans - example 341
7859 mdast:
7860 type: root
7861 children:
7862 - type: paragraph
7863 children:
7864 - type: text
7865 value: '*foo'
7866 - type: inlineCode
7867 value: '*'
7868 myst: |
7869 *foo`*`
7870 html: |-
7871 <p>*foo<code>*</code></p>
7872 - title: Code spans - example 342
7873 mdast:
7874 type: root
7875 children:
7876 - type: paragraph
7877 children:
7878 - type: text
7879 value: '[not a '
7880 - type: inlineCode
7881 value: link](/foo
7882 - type: text
7883 value: )
7884 myst: |
7885 [not a `link](/foo`)
7886 html: |-
7887 <p>[not a <code>link](/foo</code>)</p>
7888 - title: Code spans - example 343
7889 mdast:
7890 type: root
7891 children:
7892 - type: paragraph
7893 children:
7894 - type: inlineCode
7895 value: <a href="
7896 - type: text
7897 value: '">`'
7898 myst: |
7899 `<a href="`">`
7900 html: |-
7901 <p><code>&lt;a href=&quot;</code>&quot;&gt;`</p>
7902 - title: Code spans - example 344
7903 mdast:
7904 type: root
7905 children:
7906 - type: paragraph
7907 children:
7908 - type: html
7909 value: <a href="`">
7910 - type: text
7911 value: '`'
7912 myst: |
7913 <a href="`">`
7914 html: |-
7915 <p><a href="`">`</p>
7916 - title: Code spans - example 345
7917 mdast:
7918 type: root
7919 children:
7920 - type: paragraph
7921 children:
7922 - type: inlineCode
7923 value: <http://foo.bar.
7924 - type: text
7925 value: baz>`
7926 myst: |
7927 `<http://foo.bar.`baz>`
7928 html: |-
7929 <p><code>&lt;http://foo.bar.</code>baz&gt;`</p>
7930 - title: Code spans - example 346
7931 mdast:
7932 type: root
7933 children:
7934 - type: paragraph
7935 children:
7936 - type: link
7937 url: http://foo.bar.%60baz
7938 children:
7939 - type: text
7940 value: http://foo.bar.`baz
7941 - type: text
7942 value: '`'
7943 myst: |
7944 <http://foo.bar.`baz>`
7945 html: |-
7946 <p><a href="http://foo.bar.%60baz">http://foo.bar.`baz</a>`</p>
7947 - title: Code spans - example 347
7948 mdast:
7949 type: root
7950 children:
7951 - type: paragraph
7952 children:
7953 - type: text
7954 value: '```foo``'
7955 myst: |
7956 ```foo``
7957 html: |-
7958 <p>```foo``</p>
7959 - title: Code spans - example 348
7960 mdast:
7961 type: root
7962 children:
7963 - type: paragraph
7964 children:
7965 - type: text
7966 value: '`foo'
7967 myst: |
7968 `foo
7969 html: |-
7970 <p>`foo</p>
7971 - title: Code spans - example 349
7972 mdast:
7973 type: root
7974 children:
7975 - type: paragraph
7976 children:
7977 - type: text
7978 value: '`foo'
7979 - type: inlineCode
7980 value: bar
7981 myst: |
7982 `foo``bar``
7983 html: |-
7984 <p>`foo<code>bar</code></p>
7985 - title: Emphasis and strong emphasis - example 350
7986 mdast:
7987 type: root
7988 children:
7989 - type: paragraph
7990 children:
7991 - type: emphasis
7992 children:
7993 - type: text
7994 value: foo bar
7995 myst: |
7996 *foo bar*
7997 html: |-
7998 <p><em>foo bar</em></p>
7999 - title: Emphasis and strong emphasis - example 351
8000 mdast:
8001 type: root
8002 children:
8003 - type: paragraph
8004 children:
8005 - type: text
8006 value: a * foo bar*
8007 myst: |
8008 a * foo bar*
8009 html: |-
8010 <p>a * foo bar*</p>
8011 - title: Emphasis and strong emphasis - example 352
8012 mdast:
8013 type: root
8014 children:
8015 - type: paragraph
8016 children:
8017 - type: text
8018 value: a*"foo"*
8019 myst: |
8020 a*"foo"*
8021 html: |-
8022 <p>a*&quot;foo&quot;*</p>
8023 - title: Emphasis and strong emphasis - example 353
8024 mdast:
8025 type: root
8026 children:
8027 - type: paragraph
8028 children:
8029 - type: text
8030 value: '* a *'
8031 myst: |
8032 * a *
8033 html: |-
8034 <p>* a *</p>
8035 - title: Emphasis and strong emphasis - example 354
8036 mdast:
8037 type: root
8038 children:
8039 - type: paragraph
8040 children:
8041 - type: text
8042 value: foo
8043 - type: emphasis
8044 children:
8045 - type: text
8046 value: bar
8047 myst: |
8048 foo*bar*
8049 html: |-
8050 <p>foo<em>bar</em></p>
8051 - title: Emphasis and strong emphasis - example 355
8052 mdast:
8053 type: root
8054 children:
8055 - type: paragraph
8056 children:
8057 - type: text
8058 value: '5'
8059 - type: emphasis
8060 children:
8061 - type: text
8062 value: '6'
8063 - type: text
8064 value: '78'
8065 myst: |
8066 5*6*78
8067 html: |-
8068 <p>5<em>6</em>78</p>
8069 - title: Emphasis and strong emphasis - example 356
8070 mdast:
8071 type: root
8072 children:
8073 - type: paragraph
8074 children:
8075 - type: emphasis
8076 children:
8077 - type: text
8078 value: foo bar
8079 myst: |
8080 _foo bar_
8081 html: |-
8082 <p><em>foo bar</em></p>
8083 - title: Emphasis and strong emphasis - example 357
8084 mdast:
8085 type: root
8086 children:
8087 - type: paragraph
8088 children:
8089 - type: text
8090 value: _ foo bar_
8091 myst: |
8092 _ foo bar_
8093 html: |-
8094 <p>_ foo bar_</p>
8095 - title: Emphasis and strong emphasis - example 358
8096 mdast:
8097 type: root
8098 children:
8099 - type: paragraph
8100 children:
8101 - type: text
8102 value: a_"foo"_
8103 myst: |
8104 a_"foo"_
8105 html: |-
8106 <p>a_&quot;foo&quot;_</p>
8107 - title: Emphasis and strong emphasis - example 359
8108 mdast:
8109 type: root
8110 children:
8111 - type: paragraph
8112 children:
8113 - type: text
8114 value: foo_bar_
8115 myst: |
8116 foo_bar_
8117 html: |-
8118 <p>foo_bar_</p>
8119 - title: Emphasis and strong emphasis - example 360
8120 mdast:
8121 type: root
8122 children:
8123 - type: paragraph
8124 children:
8125 - type: text
8126 value: '5_6_78'
8127 myst: |
8128 5_6_78
8129 html: |-
8130 <p>5_6_78</p>
8131 - title: Emphasis and strong emphasis - example 361
8132 mdast:
8133 type: root
8134 children:
8135 - type: paragraph
8136 children:
8137 - type: text
8138 value: пристаням_стремятся_
8139 myst: |
8140 пристаням_стремятся_
8141 html: |-
8142 <p>пристаням_стремятся_</p>
8143 - title: Emphasis and strong emphasis - example 362
8144 mdast:
8145 type: root
8146 children:
8147 - type: paragraph
8148 children:
8149 - type: text
8150 value: aa_"bb"_cc
8151 myst: |
8152 aa_"bb"_cc
8153 html: |-
8154 <p>aa_&quot;bb&quot;_cc</p>
8155 - title: Emphasis and strong emphasis - example 363
8156 mdast:
8157 type: root
8158 children:
8159 - type: paragraph
8160 children:
8161 - type: text
8162 value: foo-
8163 - type: emphasis
8164 children:
8165 - type: text
8166 value: (bar)
8167 myst: |
8168 foo-_(bar)_
8169 html: |-
8170 <p>foo-<em>(bar)</em></p>
8171 - title: Emphasis and strong emphasis - example 364
8172 mdast:
8173 type: root
8174 children:
8175 - type: paragraph
8176 children:
8177 - type: text
8178 value: _foo*
8179 myst: |
8180 _foo*
8181 html: |-
8182 <p>_foo*</p>
8183 - title: Emphasis and strong emphasis - example 365
8184 mdast:
8185 type: root
8186 children:
8187 - type: paragraph
8188 children:
8189 - type: text
8190 value: '*foo bar *'
8191 myst: |
8192 *foo bar *
8193 html: |-
8194 <p>*foo bar *</p>
8195 - title: Emphasis and strong emphasis - example 366
8196 mdast:
8197 type: root
8198 children:
8199 - type: paragraph
8200 children:
8201 - type: text
8202 value: |-
8203 *foo bar
8204 *
8205 myst: |
8206 *foo bar
8207 *
8208 html: |-
8209 <p>*foo bar
8210 *</p>
8211 - title: Emphasis and strong emphasis - example 367
8212 mdast:
8213 type: root
8214 children:
8215 - type: paragraph
8216 children:
8217 - type: text
8218 value: '*(*foo)'
8219 myst: |
8220 *(*foo)
8221 html: |-
8222 <p>*(*foo)</p>
8223 - title: Emphasis and strong emphasis - example 368
8224 mdast:
8225 type: root
8226 children:
8227 - type: paragraph
8228 children:
8229 - type: emphasis
8230 children:
8231 - type: text
8232 value: (
8233 - type: emphasis
8234 children:
8235 - type: text
8236 value: foo
8237 - type: text
8238 value: )
8239 myst: |
8240 *(*foo*)*
8241 html: |-
8242 <p><em>(<em>foo</em>)</em></p>
8243 - title: Emphasis and strong emphasis - example 369
8244 mdast:
8245 type: root
8246 children:
8247 - type: paragraph
8248 children:
8249 - type: emphasis
8250 children:
8251 - type: text
8252 value: foo
8253 - type: text
8254 value: bar
8255 myst: |
8256 *foo*bar
8257 html: |-
8258 <p><em>foo</em>bar</p>
8259 - title: Emphasis and strong emphasis - example 370
8260 mdast:
8261 type: root
8262 children:
8263 - type: paragraph
8264 children:
8265 - type: text
8266 value: _foo bar _
8267 myst: |
8268 _foo bar _
8269 html: |-
8270 <p>_foo bar _</p>
8271 - title: Emphasis and strong emphasis - example 371
8272 mdast:
8273 type: root
8274 children:
8275 - type: paragraph
8276 children:
8277 - type: text
8278 value: _(_foo)
8279 myst: |
8280 _(_foo)
8281 html: |-
8282 <p>_(_foo)</p>
8283 - title: Emphasis and strong emphasis - example 372
8284 mdast:
8285 type: root
8286 children:
8287 - type: paragraph
8288 children:
8289 - type: emphasis
8290 children:
8291 - type: text
8292 value: (
8293 - type: emphasis
8294 children:
8295 - type: text
8296 value: foo
8297 - type: text
8298 value: )
8299 myst: |
8300 _(_foo_)_
8301 html: |-
8302 <p><em>(<em>foo</em>)</em></p>
8303 - title: Emphasis and strong emphasis - example 373
8304 mdast:
8305 type: root
8306 children:
8307 - type: paragraph
8308 children:
8309 - type: text
8310 value: _foo_bar
8311 myst: |
8312 _foo_bar
8313 html: |-
8314 <p>_foo_bar</p>
8315 - title: Emphasis and strong emphasis - example 374
8316 mdast:
8317 type: root
8318 children:
8319 - type: paragraph
8320 children:
8321 - type: text
8322 value: _пристаням_стремятся
8323 myst: |
8324 _пристаням_стремятся
8325 html: |-
8326 <p>_пристаням_стремятся</p>
8327 - title: Emphasis and strong emphasis - example 375
8328 mdast:
8329 type: root
8330 children:
8331 - type: paragraph
8332 children:
8333 - type: emphasis
8334 children:
8335 - type: text
8336 value: foo_bar_baz
8337 myst: |
8338 _foo_bar_baz_
8339 html: |-
8340 <p><em>foo_bar_baz</em></p>
8341 - title: Emphasis and strong emphasis - example 376
8342 mdast:
8343 type: root
8344 children:
8345 - type: paragraph
8346 children:
8347 - type: emphasis
8348 children:
8349 - type: text
8350 value: (bar)
8351 - type: text
8352 value: .
8353 myst: |
8354 _(bar)_.
8355 html: |-
8356 <p><em>(bar)</em>.</p>
8357 - title: Emphasis and strong emphasis - example 377
8358 mdast:
8359 type: root
8360 children:
8361 - type: paragraph
8362 children:
8363 - type: strong
8364 children:
8365 - type: text
8366 value: foo bar
8367 myst: |
8368 **foo bar**
8369 html: |-
8370 <p><strong>foo bar</strong></p>
8371 - title: Emphasis and strong emphasis - example 378
8372 mdast:
8373 type: root
8374 children:
8375 - type: paragraph
8376 children:
8377 - type: text
8378 value: '** foo bar**'
8379 myst: |
8380 ** foo bar**
8381 html: |-
8382 <p>** foo bar**</p>
8383 - title: Emphasis and strong emphasis - example 379
8384 mdast:
8385 type: root
8386 children:
8387 - type: paragraph
8388 children:
8389 - type: text
8390 value: a**"foo"**
8391 myst: |
8392 a**"foo"**
8393 html: |-
8394 <p>a**&quot;foo&quot;**</p>
8395 - title: Emphasis and strong emphasis - example 380
8396 mdast:
8397 type: root
8398 children:
8399 - type: paragraph
8400 children:
8401 - type: text
8402 value: foo
8403 - type: strong
8404 children:
8405 - type: text
8406 value: bar
8407 myst: |
8408 foo**bar**
8409 html: |-
8410 <p>foo<strong>bar</strong></p>
8411 - title: Emphasis and strong emphasis - example 381
8412 mdast:
8413 type: root
8414 children:
8415 - type: paragraph
8416 children:
8417 - type: strong
8418 children:
8419 - type: text
8420 value: foo bar
8421 myst: |
8422 __foo bar__
8423 html: |-
8424 <p><strong>foo bar</strong></p>
8425 - title: Emphasis and strong emphasis - example 382
8426 mdast:
8427 type: root
8428 children:
8429 - type: paragraph
8430 children:
8431 - type: text
8432 value: __ foo bar__
8433 myst: |
8434 __ foo bar__
8435 html: |-
8436 <p>__ foo bar__</p>
8437 - title: Emphasis and strong emphasis - example 383
8438 mdast:
8439 type: root
8440 children:
8441 - type: paragraph
8442 children:
8443 - type: text
8444 value: |-
8445 __
8446 foo bar__
8447 myst: |
8448 __
8449 foo bar__
8450 html: |-
8451 <p>__
8452 foo bar__</p>
8453 - title: Emphasis and strong emphasis - example 384
8454 mdast:
8455 type: root
8456 children:
8457 - type: paragraph
8458 children:
8459 - type: text
8460 value: a__"foo"__
8461 myst: |
8462 a__"foo"__
8463 html: |-
8464 <p>a__&quot;foo&quot;__</p>
8465 - title: Emphasis and strong emphasis - example 385
8466 mdast:
8467 type: root
8468 children:
8469 - type: paragraph
8470 children:
8471 - type: text
8472 value: foo__bar__
8473 myst: |
8474 foo__bar__
8475 html: |-
8476 <p>foo__bar__</p>
8477 - title: Emphasis and strong emphasis - example 386
8478 mdast:
8479 type: root
8480 children:
8481 - type: paragraph
8482 children:
8483 - type: text
8484 value: '5__6__78'
8485 myst: |
8486 5__6__78
8487 html: |-
8488 <p>5__6__78</p>
8489 - title: Emphasis and strong emphasis - example 387
8490 mdast:
8491 type: root
8492 children:
8493 - type: paragraph
8494 children:
8495 - type: text
8496 value: пристаням__стремятся__
8497 myst: |
8498 пристаням__стремятся__
8499 html: |-
8500 <p>пристаням__стремятся__</p>
8501 - title: Emphasis and strong emphasis - example 388
8502 mdast:
8503 type: root
8504 children:
8505 - type: paragraph
8506 children:
8507 - type: strong
8508 children:
8509 - type: text
8510 value: 'foo, '
8511 - type: strong
8512 children:
8513 - type: text
8514 value: bar
8515 - type: text
8516 value: ', baz'
8517 myst: |
8518 __foo, __bar__, baz__
8519 html: |-
8520 <p><strong>foo, <strong>bar</strong>, baz</strong></p>
8521 - title: Emphasis and strong emphasis - example 389
8522 mdast:
8523 type: root
8524 children:
8525 - type: paragraph
8526 children:
8527 - type: text
8528 value: foo-
8529 - type: strong
8530 children:
8531 - type: text
8532 value: (bar)
8533 myst: |
8534 foo-__(bar)__
8535 html: |-
8536 <p>foo-<strong>(bar)</strong></p>
8537 - title: Emphasis and strong emphasis - example 390
8538 mdast:
8539 type: root
8540 children:
8541 - type: paragraph
8542 children:
8543 - type: text
8544 value: '**foo bar **'
8545 myst: |
8546 **foo bar **
8547 html: |-
8548 <p>**foo bar **</p>
8549 - title: Emphasis and strong emphasis - example 391
8550 mdast:
8551 type: root
8552 children:
8553 - type: paragraph
8554 children:
8555 - type: text
8556 value: '**(**foo)'
8557 myst: |
8558 **(**foo)
8559 html: |-
8560 <p>**(**foo)</p>
8561 - title: Emphasis and strong emphasis - example 392
8562 mdast:
8563 type: root
8564 children:
8565 - type: paragraph
8566 children:
8567 - type: emphasis
8568 children:
8569 - type: text
8570 value: (
8571 - type: strong
8572 children:
8573 - type: text
8574 value: foo
8575 - type: text
8576 value: )
8577 myst: |
8578 *(**foo**)*
8579 html: |-
8580 <p><em>(<strong>foo</strong>)</em></p>
8581 - title: Emphasis and strong emphasis - example 393
8582 mdast:
8583 type: root
8584 children:
8585 - type: paragraph
8586 children:
8587 - type: strong
8588 children:
8589 - type: text
8590 value: Gomphocarpus (
8591 - type: emphasis
8592 children:
8593 - type: text
8594 value: Gomphocarpus physocarpus
8595 - type: text
8596 value: |
8597 , syn.
8598 - type: emphasis
8599 children:
8600 - type: text
8601 value: Asclepias physocarpa
8602 - type: text
8603 value: )
8604 myst: |
8605 **Gomphocarpus (*Gomphocarpus physocarpus*, syn.
8606 *Asclepias physocarpa*)**
8607 html: |-
8608 <p><strong>Gomphocarpus (<em>Gomphocarpus physocarpus</em>, syn.
8609 <em>Asclepias physocarpa</em>)</strong></p>
8610 - title: Emphasis and strong emphasis - example 394
8611 mdast:
8612 type: root
8613 children:
8614 - type: paragraph
8615 children:
8616 - type: strong
8617 children:
8618 - type: text
8619 value: foo "
8620 - type: emphasis
8621 children:
8622 - type: text
8623 value: bar
8624 - type: text
8625 value: '" foo'
8626 myst: |
8627 **foo "*bar*" foo**
8628 html: |-
8629 <p><strong>foo &quot;<em>bar</em>&quot; foo</strong></p>
8630 - title: Emphasis and strong emphasis - example 395
8631 mdast:
8632 type: root
8633 children:
8634 - type: paragraph
8635 children:
8636 - type: strong
8637 children:
8638 - type: text
8639 value: foo
8640 - type: text
8641 value: bar
8642 myst: |
8643 **foo**bar
8644 html: |-
8645 <p><strong>foo</strong>bar</p>
8646 - title: Emphasis and strong emphasis - example 396
8647 mdast:
8648 type: root
8649 children:
8650 - type: paragraph
8651 children:
8652 - type: text
8653 value: __foo bar __
8654 myst: |
8655 __foo bar __
8656 html: |-
8657 <p>__foo bar __</p>
8658 - title: Emphasis and strong emphasis - example 397
8659 mdast:
8660 type: root
8661 children:
8662 - type: paragraph
8663 children:
8664 - type: text
8665 value: __(__foo)
8666 myst: |
8667 __(__foo)
8668 html: |-
8669 <p>__(__foo)</p>
8670 - title: Emphasis and strong emphasis - example 398
8671 mdast:
8672 type: root
8673 children:
8674 - type: paragraph
8675 children:
8676 - type: emphasis
8677 children:
8678 - type: text
8679 value: (
8680 - type: strong
8681 children:
8682 - type: text
8683 value: foo
8684 - type: text
8685 value: )
8686 myst: |
8687 _(__foo__)_
8688 html: |-
8689 <p><em>(<strong>foo</strong>)</em></p>
8690 - title: Emphasis and strong emphasis - example 399
8691 mdast:
8692 type: root
8693 children:
8694 - type: paragraph
8695 children:
8696 - type: text
8697 value: __foo__bar
8698 myst: |
8699 __foo__bar
8700 html: |-
8701 <p>__foo__bar</p>
8702 - title: Emphasis and strong emphasis - example 400
8703 mdast:
8704 type: root
8705 children:
8706 - type: paragraph
8707 children:
8708 - type: text
8709 value: __пристаням__стремятся
8710 myst: |
8711 __пристаням__стремятся
8712 html: |-
8713 <p>__пристаням__стремятся</p>
8714 - title: Emphasis and strong emphasis - example 401
8715 mdast:
8716 type: root
8717 children:
8718 - type: paragraph
8719 children:
8720 - type: strong
8721 children:
8722 - type: text
8723 value: foo__bar__baz
8724 myst: |
8725 __foo__bar__baz__
8726 html: |-
8727 <p><strong>foo__bar__baz</strong></p>
8728 - title: Emphasis and strong emphasis - example 402
8729 mdast:
8730 type: root
8731 children:
8732 - type: paragraph
8733 children:
8734 - type: strong
8735 children:
8736 - type: text
8737 value: (bar)
8738 - type: text
8739 value: .
8740 myst: |
8741 __(bar)__.
8742 html: |-
8743 <p><strong>(bar)</strong>.</p>
8744 - title: Emphasis and strong emphasis - example 403
8745 mdast:
8746 type: root
8747 children:
8748 - type: paragraph
8749 children:
8750 - type: emphasis
8751 children:
8752 - type: text
8753 value: 'foo '
8754 - type: link
8755 url: /url
8756 children:
8757 - type: text
8758 value: bar
8759 myst: |
8760 *foo [bar](/url)*
8761 html: |-
8762 <p><em>foo <a href="/url">bar</a></em></p>
8763 - title: Emphasis and strong emphasis - example 404
8764 mdast:
8765 type: root
8766 children:
8767 - type: paragraph
8768 children:
8769 - type: emphasis
8770 children:
8771 - type: text
8772 value: |-
8773 foo
8774 bar
8775 myst: |
8776 *foo
8777 bar*
8778 html: |-
8779 <p><em>foo
8780 bar</em></p>
8781 - title: Emphasis and strong emphasis - example 405
8782 mdast:
8783 type: root
8784 children:
8785 - type: paragraph
8786 children:
8787 - type: emphasis
8788 children:
8789 - type: text
8790 value: 'foo '
8791 - type: strong
8792 children:
8793 - type: text
8794 value: bar
8795 - type: text
8796 value: ' baz'
8797 myst: |
8798 _foo __bar__ baz_
8799 html: |-
8800 <p><em>foo <strong>bar</strong> baz</em></p>
8801 - title: Emphasis and strong emphasis - example 406
8802 mdast:
8803 type: root
8804 children:
8805 - type: paragraph
8806 children:
8807 - type: emphasis
8808 children:
8809 - type: text
8810 value: 'foo '
8811 - type: emphasis
8812 children:
8813 - type: text
8814 value: bar
8815 - type: text
8816 value: ' baz'
8817 myst: |
8818 _foo _bar_ baz_
8819 html: |-
8820 <p><em>foo <em>bar</em> baz</em></p>
8821 - title: Emphasis and strong emphasis - example 407
8822 mdast:
8823 type: root
8824 children:
8825 - type: paragraph
8826 children:
8827 - type: emphasis
8828 children:
8829 - type: emphasis
8830 children:
8831 - type: text
8832 value: foo
8833 - type: text
8834 value: ' bar'
8835 myst: |
8836 __foo_ bar_
8837 html: |-
8838 <p><em><em>foo</em> bar</em></p>
8839 - title: Emphasis and strong emphasis - example 408
8840 mdast:
8841 type: root
8842 children:
8843 - type: paragraph
8844 children:
8845 - type: emphasis
8846 children:
8847 - type: text
8848 value: 'foo '
8849 - type: emphasis
8850 children:
8851 - type: text
8852 value: bar
8853 myst: |
8854 *foo *bar**
8855 html: |-
8856 <p><em>foo <em>bar</em></em></p>
8857 - title: Emphasis and strong emphasis - example 409
8858 mdast:
8859 type: root
8860 children:
8861 - type: paragraph
8862 children:
8863 - type: emphasis
8864 children:
8865 - type: text
8866 value: 'foo '
8867 - type: strong
8868 children:
8869 - type: text
8870 value: bar
8871 - type: text
8872 value: ' baz'
8873 myst: |
8874 *foo **bar** baz*
8875 html: |-
8876 <p><em>foo <strong>bar</strong> baz</em></p>
8877 - title: Emphasis and strong emphasis - example 410
8878 mdast:
8879 type: root
8880 children:
8881 - type: paragraph
8882 children:
8883 - type: emphasis
8884 children:
8885 - type: text
8886 value: foo
8887 - type: strong
8888 children:
8889 - type: text
8890 value: bar
8891 - type: text
8892 value: baz
8893 myst: |
8894 *foo**bar**baz*
8895 html: |-
8896 <p><em>foo<strong>bar</strong>baz</em></p>
8897 - title: Emphasis and strong emphasis - example 411
8898 mdast:
8899 type: root
8900 children:
8901 - type: paragraph
8902 children:
8903 - type: emphasis
8904 children:
8905 - type: text
8906 value: foo**bar
8907 myst: |
8908 *foo**bar*
8909 html: |-
8910 <p><em>foo**bar</em></p>
8911 - title: Emphasis and strong emphasis - example 412
8912 mdast:
8913 type: root
8914 children:
8915 - type: paragraph
8916 children:
8917 - type: emphasis
8918 children:
8919 - type: strong
8920 children:
8921 - type: text
8922 value: foo
8923 - type: text
8924 value: ' bar'
8925 myst: |
8926 ***foo** bar*
8927 html: |-
8928 <p><em><strong>foo</strong> bar</em></p>
8929 - title: Emphasis and strong emphasis - example 413
8930 mdast:
8931 type: root
8932 children:
8933 - type: paragraph
8934 children:
8935 - type: emphasis
8936 children:
8937 - type: text
8938 value: 'foo '
8939 - type: strong
8940 children:
8941 - type: text
8942 value: bar
8943 myst: |
8944 *foo **bar***
8945 html: |-
8946 <p><em>foo <strong>bar</strong></em></p>
8947 - title: Emphasis and strong emphasis - example 414
8948 mdast:
8949 type: root
8950 children:
8951 - type: paragraph
8952 children:
8953 - type: emphasis
8954 children:
8955 - type: text
8956 value: foo
8957 - type: strong
8958 children:
8959 - type: text
8960 value: bar
8961 myst: |
8962 *foo**bar***
8963 html: |-
8964 <p><em>foo<strong>bar</strong></em></p>
8965 - title: Emphasis and strong emphasis - example 415
8966 mdast:
8967 type: root
8968 children:
8969 - type: paragraph
8970 children:
8971 - type: text
8972 value: foo
8973 - type: emphasis
8974 children:
8975 - type: strong
8976 children:
8977 - type: text
8978 value: bar
8979 - type: text
8980 value: baz
8981 myst: |
8982 foo***bar***baz
8983 html: |-
8984 <p>foo<em><strong>bar</strong></em>baz</p>
8985 - title: Emphasis and strong emphasis - example 416
8986 mdast:
8987 type: root
8988 children:
8989 - type: paragraph
8990 children:
8991 - type: text
8992 value: foo
8993 - type: strong
8994 children:
8995 - type: strong
8996 children:
8997 - type: strong
8998 children:
8999 - type: text
9000 value: bar
9001 - type: text
9002 value: '***baz'
9003 myst: |
9004 foo******bar*********baz
9005 html: |-
9006 <p>foo<strong><strong><strong>bar</strong></strong></strong>***baz</p>
9007 - title: Emphasis and strong emphasis - example 417
9008 mdast:
9009 type: root
9010 children:
9011 - type: paragraph
9012 children:
9013 - type: emphasis
9014 children:
9015 - type: text
9016 value: 'foo '
9017 - type: strong
9018 children:
9019 - type: text
9020 value: 'bar '
9021 - type: emphasis
9022 children:
9023 - type: text
9024 value: baz
9025 - type: text
9026 value: ' bim'
9027 - type: text
9028 value: ' bop'
9029 myst: |
9030 *foo **bar *baz* bim** bop*
9031 html: |-
9032 <p><em>foo <strong>bar <em>baz</em> bim</strong> bop</em></p>
9033 - title: Emphasis and strong emphasis - example 418
9034 mdast:
9035 type: root
9036 children:
9037 - type: paragraph
9038 children:
9039 - type: emphasis
9040 children:
9041 - type: text
9042 value: 'foo '
9043 - type: link
9044 url: /url
9045 children:
9046 - type: emphasis
9047 children:
9048 - type: text
9049 value: bar
9050 myst: |
9051 *foo [*bar*](/url)*
9052 html: |-
9053 <p><em>foo <a href="/url"><em>bar</em></a></em></p>
9054 - title: Emphasis and strong emphasis - example 419
9055 mdast:
9056 type: root
9057 children:
9058 - type: paragraph
9059 children:
9060 - type: text
9061 value: '** is not an empty emphasis'
9062 myst: |
9063 ** is not an empty emphasis
9064 html: |-
9065 <p>** is not an empty emphasis</p>
9066 - title: Emphasis and strong emphasis - example 420
9067 mdast:
9068 type: root
9069 children:
9070 - type: paragraph
9071 children:
9072 - type: text
9073 value: '**** is not an empty strong emphasis'
9074 myst: |
9075 **** is not an empty strong emphasis
9076 html: |-
9077 <p>**** is not an empty strong emphasis</p>
9078 - title: Emphasis and strong emphasis - example 421
9079 mdast:
9080 type: root
9081 children:
9082 - type: paragraph
9083 children:
9084 - type: strong
9085 children:
9086 - type: text
9087 value: 'foo '
9088 - type: link
9089 url: /url
9090 children:
9091 - type: text
9092 value: bar
9093 myst: |
9094 **foo [bar](/url)**
9095 html: |-
9096 <p><strong>foo <a href="/url">bar</a></strong></p>
9097 - title: Emphasis and strong emphasis - example 422
9098 mdast:
9099 type: root
9100 children:
9101 - type: paragraph
9102 children:
9103 - type: strong
9104 children:
9105 - type: text
9106 value: |-
9107 foo
9108 bar
9109 myst: |
9110 **foo
9111 bar**
9112 html: |-
9113 <p><strong>foo
9114 bar</strong></p>
9115 - title: Emphasis and strong emphasis - example 423
9116 mdast:
9117 type: root
9118 children:
9119 - type: paragraph
9120 children:
9121 - type: strong
9122 children:
9123 - type: text
9124 value: 'foo '
9125 - type: emphasis
9126 children:
9127 - type: text
9128 value: bar
9129 - type: text
9130 value: ' baz'
9131 myst: |
9132 __foo _bar_ baz__
9133 html: |-
9134 <p><strong>foo <em>bar</em> baz</strong></p>
9135 - title: Emphasis and strong emphasis - example 424
9136 mdast:
9137 type: root
9138 children:
9139 - type: paragraph
9140 children:
9141 - type: strong
9142 children:
9143 - type: text
9144 value: 'foo '
9145 - type: strong
9146 children:
9147 - type: text
9148 value: bar
9149 - type: text
9150 value: ' baz'
9151 myst: |
9152 __foo __bar__ baz__
9153 html: |-
9154 <p><strong>foo <strong>bar</strong> baz</strong></p>
9155 - title: Emphasis and strong emphasis - example 425
9156 mdast:
9157 type: root
9158 children:
9159 - type: paragraph
9160 children:
9161 - type: strong
9162 children:
9163 - type: strong
9164 children:
9165 - type: text
9166 value: foo
9167 - type: text
9168 value: ' bar'
9169 myst: |
9170 ____foo__ bar__
9171 html: |-
9172 <p><strong><strong>foo</strong> bar</strong></p>
9173 - title: Emphasis and strong emphasis - example 426
9174 mdast:
9175 type: root
9176 children:
9177 - type: paragraph
9178 children:
9179 - type: strong
9180 children:
9181 - type: text
9182 value: 'foo '
9183 - type: strong
9184 children:
9185 - type: text
9186 value: bar
9187 myst: |
9188 **foo **bar****
9189 html: |-
9190 <p><strong>foo <strong>bar</strong></strong></p>
9191 - title: Emphasis and strong emphasis - example 427
9192 mdast:
9193 type: root
9194 children:
9195 - type: paragraph
9196 children:
9197 - type: strong
9198 children:
9199 - type: text
9200 value: 'foo '
9201 - type: emphasis
9202 children:
9203 - type: text
9204 value: bar
9205 - type: text
9206 value: ' baz'
9207 myst: |
9208 **foo *bar* baz**
9209 html: |-
9210 <p><strong>foo <em>bar</em> baz</strong></p>
9211 - title: Emphasis and strong emphasis - example 428
9212 mdast:
9213 type: root
9214 children:
9215 - type: paragraph
9216 children:
9217 - type: strong
9218 children:
9219 - type: text
9220 value: foo
9221 - type: emphasis
9222 children:
9223 - type: text
9224 value: bar
9225 - type: text
9226 value: baz
9227 myst: |
9228 **foo*bar*baz**
9229 html: |-
9230 <p><strong>foo<em>bar</em>baz</strong></p>
9231 - title: Emphasis and strong emphasis - example 429
9232 mdast:
9233 type: root
9234 children:
9235 - type: paragraph
9236 children:
9237 - type: strong
9238 children:
9239 - type: emphasis
9240 children:
9241 - type: text
9242 value: foo
9243 - type: text
9244 value: ' bar'
9245 myst: |
9246 ***foo* bar**
9247 html: |-
9248 <p><strong><em>foo</em> bar</strong></p>
9249 - title: Emphasis and strong emphasis - example 430
9250 mdast:
9251 type: root
9252 children:
9253 - type: paragraph
9254 children:
9255 - type: strong
9256 children:
9257 - type: text
9258 value: 'foo '
9259 - type: emphasis
9260 children:
9261 - type: text
9262 value: bar
9263 myst: |
9264 **foo *bar***
9265 html: |-
9266 <p><strong>foo <em>bar</em></strong></p>
9267 - title: Emphasis and strong emphasis - example 431
9268 mdast:
9269 type: root
9270 children:
9271 - type: paragraph
9272 children:
9273 - type: strong
9274 children:
9275 - type: text
9276 value: 'foo '
9277 - type: emphasis
9278 children:
9279 - type: text
9280 value: 'bar '
9281 - type: strong
9282 children:
9283 - type: text
9284 value: baz
9285 - type: text
9286 value: |-
9287
9288 bim
9289 - type: text
9290 value: ' bop'
9291 myst: |
9292 **foo *bar **baz**
9293 bim* bop**
9294 html: |-
9295 <p><strong>foo <em>bar <strong>baz</strong>
9296 bim</em> bop</strong></p>
9297 - title: Emphasis and strong emphasis - example 432
9298 mdast:
9299 type: root
9300 children:
9301 - type: paragraph
9302 children:
9303 - type: strong
9304 children:
9305 - type: text
9306 value: 'foo '
9307 - type: link
9308 url: /url
9309 children:
9310 - type: emphasis
9311 children:
9312 - type: text
9313 value: bar
9314 myst: |
9315 **foo [*bar*](/url)**
9316 html: |-
9317 <p><strong>foo <a href="/url"><em>bar</em></a></strong></p>
9318 - title: Emphasis and strong emphasis - example 433
9319 mdast:
9320 type: root
9321 children:
9322 - type: paragraph
9323 children:
9324 - type: text
9325 value: __ is not an empty emphasis
9326 myst: |
9327 __ is not an empty emphasis
9328 html: |-
9329 <p>__ is not an empty emphasis</p>
9330 - title: Emphasis and strong emphasis - example 434
9331 mdast:
9332 type: root
9333 children:
9334 - type: paragraph
9335 children:
9336 - type: text
9337 value: ____ is not an empty strong emphasis
9338 myst: |
9339 ____ is not an empty strong emphasis
9340 html: |-
9341 <p>____ is not an empty strong emphasis</p>
9342 - title: Emphasis and strong emphasis - example 435
9343 mdast:
9344 type: root
9345 children:
9346 - type: paragraph
9347 children:
9348 - type: text
9349 value: foo ***
9350 myst: |
9351 foo ***
9352 html: |-
9353 <p>foo ***</p>
9354 - title: Emphasis and strong emphasis - example 436
9355 mdast:
9356 type: root
9357 children:
9358 - type: paragraph
9359 children:
9360 - type: text
9361 value: 'foo '
9362 - type: emphasis
9363 children:
9364 - type: text
9365 value: '*'
9366 myst: |
9367 foo *\**
9368 html: |-
9369 <p>foo <em>*</em></p>
9370 - title: Emphasis and strong emphasis - example 437
9371 mdast:
9372 type: root
9373 children:
9374 - type: paragraph
9375 children:
9376 - type: text
9377 value: 'foo '
9378 - type: emphasis
9379 children:
9380 - type: text
9381 value: _
9382 myst: |
9383 foo *_*
9384 html: |-
9385 <p>foo <em>_</em></p>
9386 - title: Emphasis and strong emphasis - example 438
9387 mdast:
9388 type: root
9389 children:
9390 - type: paragraph
9391 children:
9392 - type: text
9393 value: foo *****
9394 myst: |
9395 foo *****
9396 html: |-
9397 <p>foo *****</p>
9398 - title: Emphasis and strong emphasis - example 439
9399 mdast:
9400 type: root
9401 children:
9402 - type: paragraph
9403 children:
9404 - type: text
9405 value: 'foo '
9406 - type: strong
9407 children:
9408 - type: text
9409 value: '*'
9410 myst: |
9411 foo **\***
9412 html: |-
9413 <p>foo <strong>*</strong></p>
9414 - title: Emphasis and strong emphasis - example 440
9415 mdast:
9416 type: root
9417 children:
9418 - type: paragraph
9419 children:
9420 - type: text
9421 value: 'foo '
9422 - type: strong
9423 children:
9424 - type: text
9425 value: _
9426 myst: |
9427 foo **_**
9428 html: |-
9429 <p>foo <strong>_</strong></p>
9430 - title: Emphasis and strong emphasis - example 441
9431 mdast:
9432 type: root
9433 children:
9434 - type: paragraph
9435 children:
9436 - type: text
9437 value: '*'
9438 - type: emphasis
9439 children:
9440 - type: text
9441 value: foo
9442 myst: |
9443 **foo*
9444 html: |-
9445 <p>*<em>foo</em></p>
9446 - title: Emphasis and strong emphasis - example 442
9447 mdast:
9448 type: root
9449 children:
9450 - type: paragraph
9451 children:
9452 - type: emphasis
9453 children:
9454 - type: text
9455 value: foo
9456 - type: text
9457 value: '*'
9458 myst: |
9459 *foo**
9460 html: |-
9461 <p><em>foo</em>*</p>
9462 - title: Emphasis and strong emphasis - example 443
9463 mdast:
9464 type: root
9465 children:
9466 - type: paragraph
9467 children:
9468 - type: text
9469 value: '*'
9470 - type: strong
9471 children:
9472 - type: text
9473 value: foo
9474 myst: |
9475 ***foo**
9476 html: |-
9477 <p>*<strong>foo</strong></p>
9478 - title: Emphasis and strong emphasis - example 444
9479 mdast:
9480 type: root
9481 children:
9482 - type: paragraph
9483 children:
9484 - type: text
9485 value: '***'
9486 - type: emphasis
9487 children:
9488 - type: text
9489 value: foo
9490 myst: |
9491 ****foo*
9492 html: |-
9493 <p>***<em>foo</em></p>
9494 - title: Emphasis and strong emphasis - example 445
9495 mdast:
9496 type: root
9497 children:
9498 - type: paragraph
9499 children:
9500 - type: strong
9501 children:
9502 - type: text
9503 value: foo
9504 - type: text
9505 value: '*'
9506 myst: |
9507 **foo***
9508 html: |-
9509 <p><strong>foo</strong>*</p>
9510 - title: Emphasis and strong emphasis - example 446
9511 mdast:
9512 type: root
9513 children:
9514 - type: paragraph
9515 children:
9516 - type: emphasis
9517 children:
9518 - type: text
9519 value: foo
9520 - type: text
9521 value: '***'
9522 myst: |
9523 *foo****
9524 html: |-
9525 <p><em>foo</em>***</p>
9526 - title: Emphasis and strong emphasis - example 447
9527 mdast:
9528 type: root
9529 children:
9530 - type: paragraph
9531 children:
9532 - type: text
9533 value: foo ___
9534 myst: |
9535 foo ___
9536 html: |-
9537 <p>foo ___</p>
9538 - title: Emphasis and strong emphasis - example 448
9539 mdast:
9540 type: root
9541 children:
9542 - type: paragraph
9543 children:
9544 - type: text
9545 value: 'foo '
9546 - type: emphasis
9547 children:
9548 - type: text
9549 value: _
9550 myst: |
9551 foo _\__
9552 html: |-
9553 <p>foo <em>_</em></p>
9554 - title: Emphasis and strong emphasis - example 449
9555 mdast:
9556 type: root
9557 children:
9558 - type: paragraph
9559 children:
9560 - type: text
9561 value: 'foo '
9562 - type: emphasis
9563 children:
9564 - type: text
9565 value: '*'
9566 myst: |
9567 foo _*_
9568 html: |-
9569 <p>foo <em>*</em></p>
9570 - title: Emphasis and strong emphasis - example 450
9571 mdast:
9572 type: root
9573 children:
9574 - type: paragraph
9575 children:
9576 - type: text
9577 value: foo _____
9578 myst: |
9579 foo _____
9580 html: |-
9581 <p>foo _____</p>
9582 - title: Emphasis and strong emphasis - example 451
9583 mdast:
9584 type: root
9585 children:
9586 - type: paragraph
9587 children:
9588 - type: text
9589 value: 'foo '
9590 - type: strong
9591 children:
9592 - type: text
9593 value: _
9594 myst: |
9595 foo __\___
9596 html: |-
9597 <p>foo <strong>_</strong></p>
9598 - title: Emphasis and strong emphasis - example 452
9599 mdast:
9600 type: root
9601 children:
9602 - type: paragraph
9603 children:
9604 - type: text
9605 value: 'foo '
9606 - type: strong
9607 children:
9608 - type: text
9609 value: '*'
9610 myst: |
9611 foo __*__
9612 html: |-
9613 <p>foo <strong>*</strong></p>
9614 - title: Emphasis and strong emphasis - example 453
9615 mdast:
9616 type: root
9617 children:
9618 - type: paragraph
9619 children:
9620 - type: text
9621 value: _
9622 - type: emphasis
9623 children:
9624 - type: text
9625 value: foo
9626 myst: |
9627 __foo_
9628 html: |-
9629 <p>_<em>foo</em></p>
9630 - title: Emphasis and strong emphasis - example 454
9631 mdast:
9632 type: root
9633 children:
9634 - type: paragraph
9635 children:
9636 - type: emphasis
9637 children:
9638 - type: text
9639 value: foo
9640 - type: text
9641 value: _
9642 myst: |
9643 _foo__
9644 html: |-
9645 <p><em>foo</em>_</p>
9646 - title: Emphasis and strong emphasis - example 455
9647 mdast:
9648 type: root
9649 children:
9650 - type: paragraph
9651 children:
9652 - type: text
9653 value: _
9654 - type: strong
9655 children:
9656 - type: text
9657 value: foo
9658 myst: |
9659 ___foo__
9660 html: |-
9661 <p>_<strong>foo</strong></p>
9662 - title: Emphasis and strong emphasis - example 456
9663 mdast:
9664 type: root
9665 children:
9666 - type: paragraph
9667 children:
9668 - type: text
9669 value: ___
9670 - type: emphasis
9671 children:
9672 - type: text
9673 value: foo
9674 myst: |
9675 ____foo_
9676 html: |-
9677 <p>___<em>foo</em></p>
9678 - title: Emphasis and strong emphasis - example 457
9679 mdast:
9680 type: root
9681 children:
9682 - type: paragraph
9683 children:
9684 - type: strong
9685 children:
9686 - type: text
9687 value: foo
9688 - type: text
9689 value: _
9690 myst: |
9691 __foo___
9692 html: |-
9693 <p><strong>foo</strong>_</p>
9694 - title: Emphasis and strong emphasis - example 458
9695 mdast:
9696 type: root
9697 children:
9698 - type: paragraph
9699 children:
9700 - type: emphasis
9701 children:
9702 - type: text
9703 value: foo
9704 - type: text
9705 value: ___
9706 myst: |
9707 _foo____
9708 html: |-
9709 <p><em>foo</em>___</p>
9710 - title: Emphasis and strong emphasis - example 459
9711 mdast:
9712 type: root
9713 children:
9714 - type: paragraph
9715 children:
9716 - type: strong
9717 children:
9718 - type: text
9719 value: foo
9720 myst: |
9721 **foo**
9722 html: |-
9723 <p><strong>foo</strong></p>
9724 - title: Emphasis and strong emphasis - example 460
9725 mdast:
9726 type: root
9727 children:
9728 - type: paragraph
9729 children:
9730 - type: emphasis
9731 children:
9732 - type: emphasis
9733 children:
9734 - type: text
9735 value: foo
9736 myst: |
9737 *_foo_*
9738 html: |-
9739 <p><em><em>foo</em></em></p>
9740 - title: Emphasis and strong emphasis - example 461
9741 mdast:
9742 type: root
9743 children:
9744 - type: paragraph
9745 children:
9746 - type: strong
9747 children:
9748 - type: text
9749 value: foo
9750 myst: |
9751 __foo__
9752 html: |-
9753 <p><strong>foo</strong></p>
9754 - title: Emphasis and strong emphasis - example 462
9755 mdast:
9756 type: root
9757 children:
9758 - type: paragraph
9759 children:
9760 - type: emphasis
9761 children:
9762 - type: emphasis
9763 children:
9764 - type: text
9765 value: foo
9766 myst: |
9767 _*foo*_
9768 html: |-
9769 <p><em><em>foo</em></em></p>
9770 - title: Emphasis and strong emphasis - example 463
9771 mdast:
9772 type: root
9773 children:
9774 - type: paragraph
9775 children:
9776 - type: strong
9777 children:
9778 - type: strong
9779 children:
9780 - type: text
9781 value: foo
9782 myst: |
9783 ****foo****
9784 html: |-
9785 <p><strong><strong>foo</strong></strong></p>
9786 - title: Emphasis and strong emphasis - example 464
9787 mdast:
9788 type: root
9789 children:
9790 - type: paragraph
9791 children:
9792 - type: strong
9793 children:
9794 - type: strong
9795 children:
9796 - type: text
9797 value: foo
9798 myst: |
9799 ____foo____
9800 html: |-
9801 <p><strong><strong>foo</strong></strong></p>
9802 - title: Emphasis and strong emphasis - example 465
9803 mdast:
9804 type: root
9805 children:
9806 - type: paragraph
9807 children:
9808 - type: strong
9809 children:
9810 - type: strong
9811 children:
9812 - type: strong
9813 children:
9814 - type: text
9815 value: foo
9816 myst: |
9817 ******foo******
9818 html: |-
9819 <p><strong><strong><strong>foo</strong></strong></strong></p>
9820 - title: Emphasis and strong emphasis - example 466
9821 mdast:
9822 type: root
9823 children:
9824 - type: paragraph
9825 children:
9826 - type: emphasis
9827 children:
9828 - type: strong
9829 children:
9830 - type: text
9831 value: foo
9832 myst: |
9833 ***foo***
9834 html: |-
9835 <p><em><strong>foo</strong></em></p>
9836 - title: Emphasis and strong emphasis - example 467
9837 mdast:
9838 type: root
9839 children:
9840 - type: paragraph
9841 children:
9842 - type: emphasis
9843 children:
9844 - type: strong
9845 children:
9846 - type: strong
9847 children:
9848 - type: text
9849 value: foo
9850 myst: |
9851 _____foo_____
9852 html: |-
9853 <p><em><strong><strong>foo</strong></strong></em></p>
9854 - title: Emphasis and strong emphasis - example 468
9855 mdast:
9856 type: root
9857 children:
9858 - type: paragraph
9859 children:
9860 - type: emphasis
9861 children:
9862 - type: text
9863 value: foo _bar
9864 - type: text
9865 value: ' baz_'
9866 myst: |
9867 *foo _bar* baz_
9868 html: |-
9869 <p><em>foo _bar</em> baz_</p>
9870 - title: Emphasis and strong emphasis - example 469
9871 mdast:
9872 type: root
9873 children:
9874 - type: paragraph
9875 children:
9876 - type: emphasis
9877 children:
9878 - type: text
9879 value: 'foo '
9880 - type: strong
9881 children:
9882 - type: text
9883 value: bar *baz bim
9884 - type: text
9885 value: ' bam'
9886 myst: |
9887 *foo __bar *baz bim__ bam*
9888 html: |-
9889 <p><em>foo <strong>bar *baz bim</strong> bam</em></p>
9890 - title: Emphasis and strong emphasis - example 470
9891 mdast:
9892 type: root
9893 children:
9894 - type: paragraph
9895 children:
9896 - type: text
9897 value: '**foo '
9898 - type: strong
9899 children:
9900 - type: text
9901 value: bar baz
9902 myst: |
9903 **foo **bar baz**
9904 html: |-
9905 <p>**foo <strong>bar baz</strong></p>
9906 - title: Emphasis and strong emphasis - example 471
9907 mdast:
9908 type: root
9909 children:
9910 - type: paragraph
9911 children:
9912 - type: text
9913 value: '*foo '
9914 - type: emphasis
9915 children:
9916 - type: text
9917 value: bar baz
9918 myst: |
9919 *foo *bar baz*
9920 html: |-
9921 <p>*foo <em>bar baz</em></p>
9922 - title: Emphasis and strong emphasis - example 472
9923 mdast:
9924 type: root
9925 children:
9926 - type: paragraph
9927 children:
9928 - type: text
9929 value: '*'
9930 - type: link
9931 url: /url
9932 children:
9933 - type: text
9934 value: bar*
9935 myst: |
9936 *[bar*](/url)
9937 html: |-
9938 <p>*<a href="/url">bar*</a></p>
9939 - title: Emphasis and strong emphasis - example 473
9940 mdast:
9941 type: root
9942 children:
9943 - type: paragraph
9944 children:
9945 - type: text
9946 value: '_foo '
9947 - type: link
9948 url: /url
9949 children:
9950 - type: text
9951 value: bar_
9952 myst: |
9953 _foo [bar_](/url)
9954 html: |-
9955 <p>_foo <a href="/url">bar_</a></p>
9956 - title: Emphasis and strong emphasis - example 474
9957 mdast:
9958 type: root
9959 children:
9960 - type: paragraph
9961 children:
9962 - type: text
9963 value: '*'
9964 - type: html
9965 value: <img src="foo" title="*"/>
9966 myst: |
9967 *<img src="foo" title="*"/>
9968 html: |-
9969 <p>*<img src="foo" title="*"/></p>
9970 - title: Emphasis and strong emphasis - example 475
9971 mdast:
9972 type: root
9973 children:
9974 - type: paragraph
9975 children:
9976 - type: text
9977 value: '**'
9978 - type: html
9979 value: <a href="**">
9980 myst: |
9981 **<a href="**">
9982 html: |-
9983 <p>**<a href="**"></p>
9984 - title: Emphasis and strong emphasis - example 476
9985 mdast:
9986 type: root
9987 children:
9988 - type: paragraph
9989 children:
9990 - type: text
9991 value: __
9992 - type: html
9993 value: <a href="__">
9994 myst: |
9995 __<a href="__">
9996 html: |-
9997 <p>__<a href="__"></p>
9998 - title: Emphasis and strong emphasis - example 477
9999 mdast:
10000 type: root
10001 children:
10002 - type: paragraph
10003 children:
10004 - type: emphasis
10005 children:
10006 - type: text
10007 value: 'a '
10008 - type: inlineCode
10009 value: '*'
10010 myst: |
10011 *a `*`*
10012 html: |-
10013 <p><em>a <code>*</code></em></p>
10014 - title: Emphasis and strong emphasis - example 478
10015 mdast:
10016 type: root
10017 children:
10018 - type: paragraph
10019 children:
10020 - type: emphasis
10021 children:
10022 - type: text
10023 value: 'a '
10024 - type: inlineCode
10025 value: _
10026 myst: |
10027 _a `_`_
10028 html: |-
10029 <p><em>a <code>_</code></em></p>
10030 - title: Emphasis and strong emphasis - example 479
10031 mdast:
10032 type: root
10033 children:
10034 - type: paragraph
10035 children:
10036 - type: text
10037 value: '**a'
10038 - type: link
10039 url: http://foo.bar/?q=**
10040 children:
10041 - type: text
10042 value: http://foo.bar/?q=**
10043 myst: |
10044 **a<http://foo.bar/?q=**>
10045 html: |-
10046 <p>**a<a href="http://foo.bar/?q=**">http://foo.bar/?q=**</a></p>
10047 - title: Emphasis and strong emphasis - example 480
10048 mdast:
10049 type: root
10050 children:
10051 - type: paragraph
10052 children:
10053 - type: text
10054 value: __a
10055 - type: link
10056 url: http://foo.bar/?q=__
10057 children:
10058 - type: text
10059 value: http://foo.bar/?q=__
10060 myst: |
10061 __a<http://foo.bar/?q=__>
10062 html: |-
10063 <p>__a<a href="http://foo.bar/?q=__">http://foo.bar/?q=__</a></p>
10064 - title: Links - example 481
10065 mdast:
10066 type: root
10067 children:
10068 - type: paragraph
10069 children:
10070 - type: link
10071 url: /uri
10072 title: title
10073 children:
10074 - type: text
10075 value: link
10076 myst: |
10077 [link](/uri "title")
10078 html: |-
10079 <p><a href="/uri" title="title">link</a></p>
10080 - title: Links - example 482
10081 mdast:
10082 type: root
10083 children:
10084 - type: paragraph
10085 children:
10086 - type: link
10087 url: /uri
10088 children:
10089 - type: text
10090 value: link
10091 myst: |
10092 [link](/uri)
10093 html: |-
10094 <p><a href="/uri">link</a></p>
10095 - title: Links - example 483
10096 mdast:
10097 type: root
10098 children:
10099 - type: paragraph
10100 children:
10101 - type: link
10102 url: ./target.md
10103 children: []
10104 myst: |
10105 [](./target.md)
10106 html: |-
10107 <p><a href="./target.md"></a></p>
10108 - title: Links - example 484
10109 mdast:
10110 type: root
10111 children:
10112 - type: paragraph
10113 children:
10114 - type: link
10115 url: ''
10116 children:
10117 - type: text
10118 value: link
10119 myst: |
10120 [link]()
10121 html: |-
10122 <p><a href="">link</a></p>
10123 - title: Links - example 485
10124 mdast:
10125 type: root
10126 children:
10127 - type: paragraph
10128 children:
10129 - type: link
10130 url: ''
10131 children:
10132 - type: text
10133 value: link
10134 myst: |
10135 [link](<>)
10136 html: |-
10137 <p><a href="">link</a></p>
10138 - title: Links - example 486
10139 mdast:
10140 type: root
10141 children:
10142 - type: paragraph
10143 children:
10144 - type: link
10145 url: ''
10146 children: []
10147 myst: |
10148 []()
10149 html: |-
10150 <p><a href=""></a></p>
10151 - title: Links - example 487
10152 mdast:
10153 type: root
10154 children:
10155 - type: paragraph
10156 children:
10157 - type: text
10158 value: '[link](/my uri)'
10159 myst: |
10160 [link](/my uri)
10161 html: |-
10162 <p>[link](/my uri)</p>
10163 - title: Links - example 488
10164 mdast:
10165 type: root
10166 children:
10167 - type: paragraph
10168 children:
10169 - type: link
10170 url: /my%20uri
10171 children:
10172 - type: text
10173 value: link
10174 myst: |
10175 [link](</my uri>)
10176 html: |-
10177 <p><a href="/my%20uri">link</a></p>
10178 - title: Links - example 489
10179 mdast:
10180 type: root
10181 children:
10182 - type: paragraph
10183 children:
10184 - type: text
10185 value: |-
10186 [link](foo
10187 bar)
10188 myst: |
10189 [link](foo
10190 bar)
10191 html: |-
10192 <p>[link](foo
10193 bar)</p>
10194 - title: Links - example 490
10195 mdast:
10196 type: root
10197 children:
10198 - type: paragraph
10199 children:
10200 - type: text
10201 value: '[link]('
10202 - type: html
10203 value: |-
10204 <foo
10205 bar>
10206 - type: text
10207 value: )
10208 myst: |
10209 [link](<foo
10210 bar>)
10211 html: |-
10212 <p>[link](<foo
10213 bar>)</p>
10214 - title: Links - example 491
10215 mdast:
10216 type: root
10217 children:
10218 - type: paragraph
10219 children:
10220 - type: link
10221 url: b)c
10222 children:
10223 - type: text
10224 value: a
10225 myst: |
10226 [a](<b)c>)
10227 html: |-
10228 <p><a href="b)c">a</a></p>
10229 - title: Links - example 492
10230 mdast:
10231 type: root
10232 children:
10233 - type: paragraph
10234 children:
10235 - type: text
10236 value: '[link](<foo>)'
10237 myst: |
10238 [link](<foo\>)
10239 html: |-
10240 <p>[link](&lt;foo&gt;)</p>
10241 - title: Links - example 493
10242 mdast:
10243 type: root
10244 children:
10245 - type: paragraph
10246 children:
10247 - type: text
10248 value: |-
10249 [a](<b)c
10250 [a](<b)c>
10251 [a](
10252 - type: html
10253 value: <b>
10254 - type: text
10255 value: c)
10256 myst: |
10257 [a](<b)c
10258 [a](<b)c>
10259 [a](<b>c)
10260 html: |-
10261 <p>[a](&lt;b)c
10262 [a](&lt;b)c&gt;
10263 [a](<b>c)</p>
10264 - title: Links - example 494
10265 mdast:
10266 type: root
10267 children:
10268 - type: paragraph
10269 children:
10270 - type: link
10271 url: (foo)
10272 children:
10273 - type: text
10274 value: link
10275 myst: |
10276 [link](\(foo\))
10277 html: |-
10278 <p><a href="(foo)">link</a></p>
10279 - title: Links - example 495
10280 mdast:
10281 type: root
10282 children:
10283 - type: paragraph
10284 children:
10285 - type: link
10286 url: foo(and(bar))
10287 children:
10288 - type: text
10289 value: link
10290 myst: |
10291 [link](foo(and(bar)))
10292 html: |-
10293 <p><a href="foo(and(bar))">link</a></p>
10294 - title: Links - example 496
10295 mdast:
10296 type: root
10297 children:
10298 - type: paragraph
10299 children:
10300 - type: text
10301 value: '[link](foo(and(bar))'
10302 myst: |
10303 [link](foo(and(bar))
10304 html: |-
10305 <p>[link](foo(and(bar))</p>
10306 - title: Links - example 497
10307 mdast:
10308 type: root
10309 children:
10310 - type: paragraph
10311 children:
10312 - type: link
10313 url: foo(and(bar)
10314 children:
10315 - type: text
10316 value: link
10317 myst: |
10318 [link](foo\(and\(bar\))
10319 html: |-
10320 <p><a href="foo(and(bar)">link</a></p>
10321 - title: Links - example 498
10322 mdast:
10323 type: root
10324 children:
10325 - type: paragraph
10326 children:
10327 - type: link
10328 url: foo(and(bar)
10329 children:
10330 - type: text
10331 value: link
10332 myst: |
10333 [link](<foo(and(bar)>)
10334 html: |-
10335 <p><a href="foo(and(bar)">link</a></p>
10336 - title: Links - example 499
10337 mdast:
10338 type: root
10339 children:
10340 - type: paragraph
10341 children:
10342 - type: link
10343 url: 'foo):'
10344 children:
10345 - type: text
10346 value: link
10347 myst: |
10348 [link](foo\)\:)
10349 html: |-
10350 <p><a href="foo):">link</a></p>
10351 - title: Links - example 500
10352 mdast:
10353 type: root
10354 children:
10355 - type: paragraph
10356 children:
10357 - type: link
10358 url: '#fragment'
10359 children:
10360 - type: text
10361 value: link
10362 - type: paragraph
10363 children:
10364 - type: link
10365 url: http://example.com#fragment
10366 children:
10367 - type: text
10368 value: link
10369 - type: paragraph
10370 children:
10371 - type: link
10372 url: http://example.com?foo=3#frag
10373 children:
10374 - type: text
10375 value: link
10376 myst: |
10377 [link](#fragment)
10378
10379 [link](http://example.com#fragment)
10380
10381 [link](http://example.com?foo=3#frag)
10382 html: |-
10383 <p><a href="#fragment">link</a></p>
10384 <p><a href="http://example.com#fragment">link</a></p>
10385 <p><a href="http://example.com?foo=3#frag">link</a></p>
10386 - title: Links - example 501
10387 mdast:
10388 type: root
10389 children:
10390 - type: paragraph
10391 children:
10392 - type: link
10393 url: foo%5Cbar
10394 children:
10395 - type: text
10396 value: link
10397 myst: |
10398 [link](foo\bar)
10399 html: |-
10400 <p><a href="foo%5Cbar">link</a></p>
10401 - title: Links - example 502
10402 mdast:
10403 type: root
10404 children:
10405 - type: paragraph
10406 children:
10407 - type: link
10408 url: foo%20b%C3%A4
10409 children:
10410 - type: text
10411 value: link
10412 myst: |
10413 [link](foo%20b&auml;)
10414 html: |-
10415 <p><a href="foo%20b%C3%A4">link</a></p>
10416 - title: Links - example 503
10417 mdast:
10418 type: root
10419 children:
10420 - type: paragraph
10421 children:
10422 - type: link
10423 url: '%22title%22'
10424 children:
10425 - type: text
10426 value: link
10427 myst: |
10428 [link]("title")
10429 html: |-
10430 <p><a href="%22title%22">link</a></p>
10431 - title: Links - example 504
10432 mdast:
10433 type: root
10434 children:
10435 - type: paragraph
10436 children:
10437 - type: link
10438 url: /url
10439 title: title
10440 children:
10441 - type: text
10442 value: link
10443 - type: text
10444 value: |+
10445
10446 - type: link
10447 url: /url
10448 title: title
10449 children:
10450 - type: text
10451 value: link
10452 - type: text
10453 value: |+
10454
10455 - type: link
10456 url: /url
10457 title: title
10458 children:
10459 - type: text
10460 value: link
10461 myst: |
10462 [link](/url "title")
10463 [link](/url 'title')
10464 [link](/url (title))
10465 html: |-
10466 <p><a href="/url" title="title">link</a>
10467 <a href="/url" title="title">link</a>
10468 <a href="/url" title="title">link</a></p>
10469 - title: Links - example 505
10470 mdast:
10471 type: root
10472 children:
10473 - type: paragraph
10474 children:
10475 - type: link
10476 url: /url
10477 title: title ""
10478 children:
10479 - type: text
10480 value: link
10481 myst: |
10482 [link](/url "title \"&quot;")
10483 html: |-
10484 <p><a href="/url" title="title &quot;&quot;">link</a></p>
10485 - title: Links - example 506
10486 mdast:
10487 type: root
10488 children:
10489 - type: paragraph
10490 children:
10491 - type: link
10492 url: "/url\u00A0\"title\""
10493 children:
10494 - type: text
10495 value: link
10496 myst: |
10497 [link](/url "title")
10498 html: |-
10499 <p><a href="/url%C2%A0%22title%22">link</a></p>
10500 - title: Links - example 507
10501 mdast:
10502 type: root
10503 children:
10504 - type: paragraph
10505 children:
10506 - type: text
10507 value: '[link](/url "title "and" title")'
10508 myst: |
10509 [link](/url "title "and" title")
10510 html: |-
10511 <p>[link](/url &quot;title &quot;and&quot; title&quot;)</p>
10512 - title: Links - example 508
10513 mdast:
10514 type: root
10515 children:
10516 - type: paragraph
10517 children:
10518 - type: link
10519 url: /url
10520 title: title "and" title
10521 children:
10522 - type: text
10523 value: link
10524 myst: |
10525 [link](/url 'title "and" title')
10526 html: |-
10527 <p><a href="/url" title="title &quot;and&quot; title">link</a></p>
10528 - title: Links - example 509
10529 mdast:
10530 type: root
10531 children:
10532 - type: paragraph
10533 children:
10534 - type: link
10535 url: /uri
10536 title: title
10537 children:
10538 - type: text
10539 value: link
10540 myst: |
10541 [link]( /uri
10542 "title" )
10543 html: |-
10544 <p><a href="/uri" title="title">link</a></p>
10545 - title: Links - example 510
10546 mdast:
10547 type: root
10548 children:
10549 - type: paragraph
10550 children:
10551 - type: text
10552 value: '[link] (/uri)'
10553 myst: |
10554 [link] (/uri)
10555 html: |-
10556 <p>[link] (/uri)</p>
10557 - title: Links - example 511
10558 mdast:
10559 type: root
10560 children:
10561 - type: paragraph
10562 children:
10563 - type: link
10564 url: /uri
10565 children:
10566 - type: text
10567 value: link [foo [bar]]
10568 myst: |
10569 [link [foo [bar]]](/uri)
10570 html: |-
10571 <p><a href="/uri">link [foo [bar]]</a></p>
10572 - title: Links - example 512
10573 mdast:
10574 type: root
10575 children:
10576 - type: paragraph
10577 children:
10578 - type: text
10579 value: '[link] bar](/uri)'
10580 myst: |
10581 [link] bar](/uri)
10582 html: |-
10583 <p>[link] bar](/uri)</p>
10584 - title: Links - example 513
10585 mdast:
10586 type: root
10587 children:
10588 - type: paragraph
10589 children:
10590 - type: text
10591 value: '[link '
10592 - type: link
10593 url: /uri
10594 children:
10595 - type: text
10596 value: bar
10597 myst: |
10598 [link [bar](/uri)
10599 html: |-
10600 <p>[link <a href="/uri">bar</a></p>
10601 - title: Links - example 514
10602 mdast:
10603 type: root
10604 children:
10605 - type: paragraph
10606 children:
10607 - type: link
10608 url: /uri
10609 children:
10610 - type: text
10611 value: link [bar
10612 myst: |
10613 [link \[bar](/uri)
10614 html: |-
10615 <p><a href="/uri">link [bar</a></p>
10616 - title: Links - example 515
10617 mdast:
10618 type: root
10619 children:
10620 - type: paragraph
10621 children:
10622 - type: link
10623 url: /uri
10624 children:
10625 - type: text
10626 value: 'link '
10627 - type: emphasis
10628 children:
10629 - type: text
10630 value: 'foo '
10631 - type: strong
10632 children:
10633 - type: text
10634 value: bar
10635 - type: text
10636 value: ' '
10637 - type: inlineCode
10638 value: '#'
10639 myst: |
10640 [link *foo **bar** `#`*](/uri)
10641 html: >
10642 <p><a href="/uri">link <em>foo <strong>bar</strong>
10643 <code>#</code></em></a></p>
10644 - title: Links - example 516
10645 mdast:
10646 type: root
10647 children:
10648 - type: paragraph
10649 children:
10650 - type: link
10651 url: /uri
10652 children:
10653 - type: image
10654 url: moon.jpg
10655 alt: moon
10656 myst: |
10657 [![moon](moon.jpg)](/uri)
10658 html: |-
10659 <p><a href="/uri"><img src="moon.jpg" alt="moon" /></a></p>
10660 - title: Links - example 517
10661 mdast:
10662 type: root
10663 children:
10664 - type: paragraph
10665 children:
10666 - type: text
10667 value: '[foo '
10668 - type: link
10669 url: /uri
10670 children:
10671 - type: text
10672 value: bar
10673 - type: text
10674 value: '](/uri)'
10675 myst: |
10676 [foo [bar](/uri)](/uri)
10677 html: |-
10678 <p>[foo <a href="/uri">bar</a>](/uri)</p>
10679 - title: Links - example 518
10680 mdast:
10681 type: root
10682 children:
10683 - type: paragraph
10684 children:
10685 - type: text
10686 value: '[foo '
10687 - type: emphasis
10688 children:
10689 - type: text
10690 value: '[bar '
10691 - type: link
10692 url: /uri
10693 children:
10694 - type: text
10695 value: baz
10696 - type: text
10697 value: '](/uri)'
10698 - type: text
10699 value: '](/uri)'
10700 myst: |
10701 [foo *[bar [baz](/uri)](/uri)*](/uri)
10702 html: |-
10703 <p>[foo <em>[bar <a href="/uri">baz</a>](/uri)</em>](/uri)</p>
10704 - title: Links - example 519
10705 mdast:
10706 type: root
10707 children:
10708 - type: paragraph
10709 children:
10710 - type: image
10711 url: uri3
10712 alt: '[foo](uri2)'
10713 myst: |
10714 ![[[foo](uri1)](uri2)](uri3)
10715 html: |-
10716 <p><img src="uri3" alt="[foo](uri2)" /></p>
10717 - title: Links - example 520
10718 mdast:
10719 type: root
10720 children:
10721 - type: paragraph
10722 children:
10723 - type: text
10724 value: '*'
10725 - type: link
10726 url: /uri
10727 children:
10728 - type: text
10729 value: foo*
10730 myst: |
10731 *[foo*](/uri)
10732 html: |-
10733 <p>*<a href="/uri">foo*</a></p>
10734 - title: Links - example 521
10735 mdast:
10736 type: root
10737 children:
10738 - type: paragraph
10739 children:
10740 - type: link
10741 url: baz*
10742 children:
10743 - type: text
10744 value: foo *bar
10745 myst: |
10746 [foo *bar](baz*)
10747 html: |-
10748 <p><a href="baz*">foo *bar</a></p>
10749 - title: Links - example 522
10750 mdast:
10751 type: root
10752 children:
10753 - type: paragraph
10754 children:
10755 - type: emphasis
10756 children:
10757 - type: text
10758 value: foo [bar
10759 - type: text
10760 value: ' baz]'
10761 myst: |
10762 *foo [bar* baz]
10763 html: |-
10764 <p><em>foo [bar</em> baz]</p>
10765 - title: Links - example 523
10766 mdast:
10767 type: root
10768 children:
10769 - type: paragraph
10770 children:
10771 - type: text
10772 value: '[foo '
10773 - type: html
10774 value: <bar attr="](baz)">
10775 myst: |
10776 [foo <bar attr="](baz)">
10777 html: |-
10778 <p>[foo <bar attr="](baz)"></p>
10779 - title: Links - example 524
10780 mdast:
10781 type: root
10782 children:
10783 - type: paragraph
10784 children:
10785 - type: text
10786 value: '[foo'
10787 - type: inlineCode
10788 value: '](/uri)'
10789 myst: |
10790 [foo`](/uri)`
10791 html: |-
10792 <p>[foo<code>](/uri)</code></p>
10793 - title: Links - example 525
10794 mdast:
10795 type: root
10796 children:
10797 - type: paragraph
10798 children:
10799 - type: text
10800 value: '[foo'
10801 - type: link
10802 url: http://example.com/?search=%5D(uri)
10803 children:
10804 - type: text
10805 value: http://example.com/?search=](uri)
10806 myst: |
10807 [foo<http://example.com/?search=](uri)>
10808 html: >
10809 <p>[foo<a
10810 href="http://example.com/?search=%5D(uri)">http://example.com/?search=](uri)</a></p>
10811 - title: Links - example 526
10812 mdast:
10813 type: root
10814 children:
10815 - type: paragraph
10816 children:
10817 - type: link
10818 url: /url
10819 title: title
10820 children:
10821 - type: text
10822 value: foo
10823 myst: |
10824 [foo][bar]
10825
10826 [bar]: /url "title"
10827 html: |-
10828 <p><a href="/url" title="title">foo</a></p>
10829 - title: Links - example 527
10830 mdast:
10831 type: root
10832 children:
10833 - type: paragraph
10834 children:
10835 - type: link
10836 url: /uri
10837 children:
10838 - type: text
10839 value: link [foo [bar]]
10840 myst: |
10841 [link [foo [bar]]][ref]
10842
10843 [ref]: /uri
10844 html: |-
10845 <p><a href="/uri">link [foo [bar]]</a></p>
10846 - title: Links - example 528
10847 mdast:
10848 type: root
10849 children:
10850 - type: paragraph
10851 children:
10852 - type: link
10853 url: /uri
10854 children:
10855 - type: text
10856 value: link [bar
10857 myst: |
10858 [link \[bar][ref]
10859
10860 [ref]: /uri
10861 html: |-
10862 <p><a href="/uri">link [bar</a></p>
10863 - title: Links - example 529
10864 mdast:
10865 type: root
10866 children:
10867 - type: paragraph
10868 children:
10869 - type: link
10870 url: /uri
10871 children:
10872 - type: text
10873 value: 'link '
10874 - type: emphasis
10875 children:
10876 - type: text
10877 value: 'foo '
10878 - type: strong
10879 children:
10880 - type: text
10881 value: bar
10882 - type: text
10883 value: ' '
10884 - type: inlineCode
10885 value: '#'
10886 myst: |
10887 [link *foo **bar** `#`*][ref]
10888
10889 [ref]: /uri
10890 html: >
10891 <p><a href="/uri">link <em>foo <strong>bar</strong>
10892 <code>#</code></em></a></p>
10893 - title: Links - example 530
10894 mdast:
10895 type: root
10896 children:
10897 - type: paragraph
10898 children:
10899 - type: link
10900 url: /uri
10901 children:
10902 - type: image
10903 url: moon.jpg
10904 alt: moon
10905 myst: |
10906 [![moon](moon.jpg)][ref]
10907
10908 [ref]: /uri
10909 html: |-
10910 <p><a href="/uri"><img src="moon.jpg" alt="moon" /></a></p>
10911 - title: Links - example 531
10912 mdast:
10913 type: root
10914 children:
10915 - type: paragraph
10916 children:
10917 - type: text
10918 value: '[foo '
10919 - type: link
10920 url: /uri
10921 children:
10922 - type: text
10923 value: bar
10924 - type: text
10925 value: ']'
10926 - type: link
10927 url: /uri
10928 children:
10929 - type: text
10930 value: ref
10931 myst: |
10932 [foo [bar](/uri)][ref]
10933
10934 [ref]: /uri
10935 html: |-
10936 <p>[foo <a href="/uri">bar</a>]<a href="/uri">ref</a></p>
10937 - title: Links - example 532
10938 mdast:
10939 type: root
10940 children:
10941 - type: paragraph
10942 children:
10943 - type: text
10944 value: '[foo '
10945 - type: emphasis
10946 children:
10947 - type: text
10948 value: 'bar '
10949 - type: link
10950 url: /uri
10951 children:
10952 - type: text
10953 value: baz
10954 - type: text
10955 value: ']'
10956 - type: link
10957 url: /uri
10958 children:
10959 - type: text
10960 value: ref
10961 myst: |
10962 [foo *bar [baz][ref]*][ref]
10963
10964 [ref]: /uri
10965 html: |-
10966 <p>[foo <em>bar <a href="/uri">baz</a></em>]<a href="/uri">ref</a></p>
10967 - title: Links - example 533
10968 mdast:
10969 type: root
10970 children:
10971 - type: paragraph
10972 children:
10973 - type: text
10974 value: '*'
10975 - type: link
10976 url: /uri
10977 children:
10978 - type: text
10979 value: foo*
10980 myst: |
10981 *[foo*][ref]
10982
10983 [ref]: /uri
10984 html: |-
10985 <p>*<a href="/uri">foo*</a></p>
10986 - title: Links - example 534
10987 mdast:
10988 type: root
10989 children:
10990 - type: paragraph
10991 children:
10992 - type: link
10993 url: /uri
10994 children:
10995 - type: text
10996 value: foo *bar
10997 - type: text
10998 value: '*'
10999 myst: |
11000 [foo *bar][ref]*
11001
11002 [ref]: /uri
11003 html: |-
11004 <p><a href="/uri">foo *bar</a>*</p>
11005 - title: Links - example 535
11006 mdast:
11007 type: root
11008 children:
11009 - type: paragraph
11010 children:
11011 - type: text
11012 value: '[foo '
11013 - type: html
11014 value: <bar attr="][ref]">
11015 myst: |
11016 [foo <bar attr="][ref]">
11017
11018 [ref]: /uri
11019 html: |-
11020 <p>[foo <bar attr="][ref]"></p>
11021 - title: Links - example 536
11022 mdast:
11023 type: root
11024 children:
11025 - type: paragraph
11026 children:
11027 - type: text
11028 value: '[foo'
11029 - type: inlineCode
11030 value: '][ref]'
11031 myst: |
11032 [foo`][ref]`
11033
11034 [ref]: /uri
11035 html: |-
11036 <p>[foo<code>][ref]</code></p>
11037 - title: Links - example 537
11038 mdast:
11039 type: root
11040 children:
11041 - type: paragraph
11042 children:
11043 - type: text
11044 value: '[foo'
11045 - type: link
11046 url: http://example.com/?search=%5D%5Bref%5D
11047 children:
11048 - type: text
11049 value: http://example.com/?search=][ref]
11050 myst: |
11051 [foo<http://example.com/?search=][ref]>
11052
11053 [ref]: /uri
11054 html: >
11055 <p>[foo<a
11056 href="http://example.com/?search=%5D%5Bref%5D">http://example.com/?search=][ref]</a></p>
11057 - title: Links - example 538
11058 mdast:
11059 type: root
11060 children:
11061 - type: paragraph
11062 children:
11063 - type: link
11064 url: /url
11065 title: title
11066 children:
11067 - type: text
11068 value: foo
11069 myst: |
11070 [foo][BaR]
11071
11072 [bar]: /url "title"
11073 html: |-
11074 <p><a href="/url" title="title">foo</a></p>
11075 - title: Links - example 539
11076 mdast:
11077 type: root
11078 children:
11079 - type: paragraph
11080 children:
11081 - type: link
11082 url: /url
11083 children:
11084 - type: text
11085 value:
11086 myst: |
11087 [ẞ]
11088
11089 [SS]: /url
11090 html: |-
11091 <p><a href="/url">ẞ</a></p>
11092 - title: Links - example 540
11093 mdast:
11094 type: root
11095 children:
11096 - type: paragraph
11097 children:
11098 - type: link
11099 url: /url
11100 children:
11101 - type: text
11102 value: Baz
11103 myst: |
11104 [Foo
11105 bar]: /url
11106
11107 [Baz][Foo bar]
11108 html: |-
11109 <p><a href="/url">Baz</a></p>
11110 - title: Links - example 541
11111 mdast:
11112 type: root
11113 children:
11114 - type: paragraph
11115 children:
11116 - type: text
11117 value: '[foo] '
11118 - type: link
11119 url: /url
11120 title: title
11121 children:
11122 - type: text
11123 value: bar
11124 myst: |
11125 [foo] [bar]
11126
11127 [bar]: /url "title"
11128 html: |-
11129 <p>[foo] <a href="/url" title="title">bar</a></p>
11130 - title: Links - example 542
11131 mdast:
11132 type: root
11133 children:
11134 - type: paragraph
11135 children:
11136 - type: text
11137 value: |
11138 [foo]
11139 - type: link
11140 url: /url
11141 title: title
11142 children:
11143 - type: text
11144 value: bar
11145 myst: |
11146 [foo]
11147 [bar]
11148
11149 [bar]: /url "title"
11150 html: |-
11151 <p>[foo]
11152 <a href="/url" title="title">bar</a></p>
11153 - title: Links - example 543
11154 mdast:
11155 type: root
11156 children:
11157 - type: paragraph
11158 children:
11159 - type: link
11160 url: /url1
11161 children:
11162 - type: text
11163 value: bar
11164 myst: |
11165 [foo]: /url1
11166
11167 [foo]: /url2
11168
11169 [bar][foo]
11170 html: |-
11171 <p><a href="/url1">bar</a></p>
11172 - title: Links - example 544
11173 mdast:
11174 type: root
11175 children:
11176 - type: paragraph
11177 children:
11178 - type: text
11179 value: '[bar][foo!]'
11180 myst: |
11181 [bar][foo\!]
11182
11183 [foo!]: /url
11184 html: |-
11185 <p>[bar][foo!]</p>
11186 - title: Links - example 545
11187 mdast:
11188 type: root
11189 children:
11190 - type: paragraph
11191 children:
11192 - type: text
11193 value: '[foo][ref[]'
11194 - type: paragraph
11195 children:
11196 - type: text
11197 value: '[ref[]: /uri'
11198 myst: |
11199 [foo][ref[]
11200
11201 [ref[]: /uri
11202 html: |-
11203 <p>[foo][ref[]</p>
11204 <p>[ref[]: /uri</p>
11205 - title: Links - example 546
11206 mdast:
11207 type: root
11208 children:
11209 - type: paragraph
11210 children:
11211 - type: text
11212 value: '[foo][ref[bar]]'
11213 - type: paragraph
11214 children:
11215 - type: text
11216 value: '[ref[bar]]: /uri'
11217 myst: |
11218 [foo][ref[bar]]
11219
11220 [ref[bar]]: /uri
11221 html: |-
11222 <p>[foo][ref[bar]]</p>
11223 <p>[ref[bar]]: /uri</p>
11224 - title: Links - example 547
11225 mdast:
11226 type: root
11227 children:
11228 - type: paragraph
11229 children:
11230 - type: text
11231 value: '[[[foo]]]'
11232 - type: paragraph
11233 children:
11234 - type: text
11235 value: '[[[foo]]]: /url'
11236 myst: |
11237 [[[foo]]]
11238
11239 [[[foo]]]: /url
11240 html: |-
11241 <p>[[[foo]]]</p>
11242 <p>[[[foo]]]: /url</p>
11243 - title: Links - example 548
11244 mdast:
11245 type: root
11246 children:
11247 - type: paragraph
11248 children:
11249 - type: link
11250 url: /uri
11251 children:
11252 - type: text
11253 value: foo
11254 myst: |
11255 [foo][ref\[]
11256
11257 [ref\[]: /uri
11258 html: |-
11259 <p><a href="/uri">foo</a></p>
11260 - title: Links - example 549
11261 mdast:
11262 type: root
11263 children:
11264 - type: paragraph
11265 children:
11266 - type: link
11267 url: /uri
11268 children:
11269 - type: text
11270 value: bar\
11271 myst: |
11272 [bar\\]: /uri
11273
11274 [bar\\]
11275 html: |-
11276 <p><a href="/uri">bar\</a></p>
11277 - title: Links - example 550
11278 mdast:
11279 type: root
11280 children:
11281 - type: paragraph
11282 children:
11283 - type: text
11284 value: '[]'
11285 - type: paragraph
11286 children:
11287 - type: text
11288 value: '[]: /uri'
11289 myst: |
11290 []
11291
11292 []: /uri
11293 html: |-
11294 <p>[]</p>
11295 <p>[]: /uri</p>
11296 - title: Links - example 551
11297 mdast:
11298 type: root
11299 children:
11300 - type: paragraph
11301 children:
11302 - type: text
11303 value: |-
11304 [
11305 ]
11306 - type: paragraph
11307 children:
11308 - type: text
11309 value: |-
11310 [
11311 ]: /uri
11312 myst: |
11313 [
11314 ]
11315
11316 [
11317 ]: /uri
11318 html: |-
11319 <p>[
11320 ]</p>
11321 <p>[
11322 ]: /uri</p>
11323 - title: Links - example 552
11324 mdast:
11325 type: root
11326 children:
11327 - type: paragraph
11328 children:
11329 - type: link
11330 url: /url
11331 title: title
11332 children:
11333 - type: text
11334 value: foo
11335 myst: |
11336 [foo][]
11337
11338 [foo]: /url "title"
11339 html: |-
11340 <p><a href="/url" title="title">foo</a></p>
11341 - title: Links - example 553
11342 mdast:
11343 type: root
11344 children:
11345 - type: paragraph
11346 children:
11347 - type: link
11348 url: /url
11349 title: title
11350 children:
11351 - type: emphasis
11352 children:
11353 - type: text
11354 value: foo
11355 - type: text
11356 value: ' bar'
11357 myst: |
11358 [*foo* bar][]
11359
11360 [*foo* bar]: /url "title"
11361 html: |-
11362 <p><a href="/url" title="title"><em>foo</em> bar</a></p>
11363 - title: Links - example 554
11364 mdast:
11365 type: root
11366 children:
11367 - type: paragraph
11368 children:
11369 - type: link
11370 url: /url
11371 title: title
11372 children:
11373 - type: text
11374 value: Foo
11375 myst: |
11376 [Foo][]
11377
11378 [foo]: /url "title"
11379 html: |-
11380 <p><a href="/url" title="title">Foo</a></p>
11381 - title: Links - example 555
11382 mdast:
11383 type: root
11384 children:
11385 - type: paragraph
11386 children:
11387 - type: link
11388 url: /url
11389 title: title
11390 children:
11391 - type: text
11392 value: foo
11393 - type: text
11394 value: |-
11395
11396 []
11397 myst: |
11398 [foo]
11399 []
11400
11401 [foo]: /url "title"
11402 html: |-
11403 <p><a href="/url" title="title">foo</a>
11404 []</p>
11405 - title: Links - example 556
11406 mdast:
11407 type: root
11408 children:
11409 - type: paragraph
11410 children:
11411 - type: link
11412 url: /url
11413 title: title
11414 children:
11415 - type: text
11416 value: foo
11417 myst: |
11418 [foo]
11419
11420 [foo]: /url "title"
11421 html: |-
11422 <p><a href="/url" title="title">foo</a></p>
11423 - title: Links - example 557
11424 mdast:
11425 type: root
11426 children:
11427 - type: paragraph
11428 children:
11429 - type: link
11430 url: /url
11431 title: title
11432 children:
11433 - type: emphasis
11434 children:
11435 - type: text
11436 value: foo
11437 - type: text
11438 value: ' bar'
11439 myst: |
11440 [*foo* bar]
11441
11442 [*foo* bar]: /url "title"
11443 html: |-
11444 <p><a href="/url" title="title"><em>foo</em> bar</a></p>
11445 - title: Links - example 558
11446 mdast:
11447 type: root
11448 children:
11449 - type: paragraph
11450 children:
11451 - type: text
11452 value: '['
11453 - type: link
11454 url: /url
11455 title: title
11456 children:
11457 - type: emphasis
11458 children:
11459 - type: text
11460 value: foo
11461 - type: text
11462 value: ' bar'
11463 - type: text
11464 value: ']'
11465 myst: |
11466 [[*foo* bar]]
11467
11468 [*foo* bar]: /url "title"
11469 html: |-
11470 <p>[<a href="/url" title="title"><em>foo</em> bar</a>]</p>
11471 - title: Links - example 559
11472 mdast:
11473 type: root
11474 children:
11475 - type: paragraph
11476 children:
11477 - type: text
11478 value: '[[bar '
11479 - type: link
11480 url: /url
11481 children:
11482 - type: text
11483 value: foo
11484 myst: |
11485 [[bar [foo]
11486
11487 [foo]: /url
11488 html: |-
11489 <p>[[bar <a href="/url">foo</a></p>
11490 - title: Links - example 560
11491 mdast:
11492 type: root
11493 children:
11494 - type: paragraph
11495 children:
11496 - type: link
11497 url: /url
11498 title: title
11499 children:
11500 - type: text
11501 value: Foo
11502 myst: |
11503 [Foo]
11504
11505 [foo]: /url "title"
11506 html: |-
11507 <p><a href="/url" title="title">Foo</a></p>
11508 - title: Links - example 561
11509 mdast:
11510 type: root
11511 children:
11512 - type: paragraph
11513 children:
11514 - type: link
11515 url: /url
11516 children:
11517 - type: text
11518 value: foo
11519 - type: text
11520 value: ' bar'
11521 myst: |
11522 [foo] bar
11523
11524 [foo]: /url
11525 html: |-
11526 <p><a href="/url">foo</a> bar</p>
11527 - title: Links - example 562
11528 mdast:
11529 type: root
11530 children:
11531 - type: paragraph
11532 children:
11533 - type: text
11534 value: '[foo]'
11535 myst: |
11536 \[foo]
11537
11538 [foo]: /url "title"
11539 html: |-
11540 <p>[foo]</p>
11541 - title: Links - example 563
11542 mdast:
11543 type: root
11544 children:
11545 - type: paragraph
11546 children:
11547 - type: text
11548 value: '*'
11549 - type: link
11550 url: /url
11551 children:
11552 - type: text
11553 value: foo*
11554 myst: |
11555 [foo*]: /url
11556
11557 *[foo*]
11558 html: |-
11559 <p>*<a href="/url">foo*</a></p>
11560 - title: Links - example 564
11561 mdast:
11562 type: root
11563 children:
11564 - type: paragraph
11565 children:
11566 - type: link
11567 url: /url2
11568 children:
11569 - type: text
11570 value: foo
11571 myst: |
11572 [foo][bar]
11573
11574 [foo]: /url1
11575 [bar]: /url2
11576 html: |-
11577 <p><a href="/url2">foo</a></p>
11578 - title: Links - example 565
11579 mdast:
11580 type: root
11581 children:
11582 - type: paragraph
11583 children:
11584 - type: link
11585 url: /url1
11586 children:
11587 - type: text
11588 value: foo
11589 myst: |
11590 [foo][]
11591
11592 [foo]: /url1
11593 html: |-
11594 <p><a href="/url1">foo</a></p>
11595 - title: Links - example 566
11596 mdast:
11597 type: root
11598 children:
11599 - type: paragraph
11600 children:
11601 - type: link
11602 url: ''
11603 children:
11604 - type: text
11605 value: foo
11606 myst: |
11607 [foo]()
11608
11609 [foo]: /url1
11610 html: |-
11611 <p><a href="">foo</a></p>
11612 - title: Links - example 567
11613 mdast:
11614 type: root
11615 children:
11616 - type: paragraph
11617 children:
11618 - type: link
11619 url: /url1
11620 children:
11621 - type: text
11622 value: foo
11623 - type: text
11624 value: (not a link)
11625 myst: |
11626 [foo](not a link)
11627
11628 [foo]: /url1
11629 html: |-
11630 <p><a href="/url1">foo</a>(not a link)</p>
11631 - title: Links - example 568
11632 mdast:
11633 type: root
11634 children:
11635 - type: paragraph
11636 children:
11637 - type: text
11638 value: '[foo]'
11639 - type: link
11640 url: /url
11641 children:
11642 - type: text
11643 value: bar
11644 myst: |
11645 [foo][bar][baz]
11646
11647 [baz]: /url
11648 html: |-
11649 <p>[foo]<a href="/url">bar</a></p>
11650 - title: Links - example 569
11651 mdast:
11652 type: root
11653 children:
11654 - type: paragraph
11655 children:
11656 - type: link
11657 url: /url2
11658 children:
11659 - type: text
11660 value: foo
11661 - type: link
11662 url: /url1
11663 children:
11664 - type: text
11665 value: baz
11666 myst: |
11667 [foo][bar][baz]
11668
11669 [baz]: /url1
11670 [bar]: /url2
11671 html: |-
11672 <p><a href="/url2">foo</a><a href="/url1">baz</a></p>
11673 - title: Links - example 570
11674 mdast:
11675 type: root
11676 children:
11677 - type: paragraph
11678 children:
11679 - type: text
11680 value: '[foo]'
11681 - type: link
11682 url: /url1
11683 children:
11684 - type: text
11685 value: bar
11686 myst: |
11687 [foo][bar][baz]
11688
11689 [baz]: /url1
11690 [foo]: /url2
11691 html: |-
11692 <p>[foo]<a href="/url1">bar</a></p>
11693 - title: Images - example 571
11694 mdast:
11695 type: root
11696 children:
11697 - type: paragraph
11698 children:
11699 - type: image
11700 url: /url
11701 alt: foo
11702 title: title
11703 myst: |
11704 ![foo](/url "title")
11705 html: |-
11706 <p><img src="/url" alt="foo" title="title" /></p>
11707 - title: Images - example 572
11708 mdast:
11709 type: root
11710 children:
11711 - type: paragraph
11712 children:
11713 - type: image
11714 url: train.jpg
11715 alt: foo bar
11716 title: train & tracks
11717 myst: |
11718 ![foo *bar*]
11719
11720 [foo *bar*]: train.jpg "train & tracks"
11721 html: |-
11722 <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
11723 - title: Images - example 573
11724 mdast:
11725 type: root
11726 children:
11727 - type: paragraph
11728 children:
11729 - type: image
11730 url: /url2
11731 alt: foo bar
11732 myst: |
11733 ![foo ![bar](/url)](/url2)
11734 html: |-
11735 <p><img src="/url2" alt="foo bar" /></p>
11736 - title: Images - example 574
11737 mdast:
11738 type: root
11739 children:
11740 - type: paragraph
11741 children:
11742 - type: image
11743 url: /url2
11744 alt: foo bar
11745 myst: |
11746 ![foo [bar](/url)](/url2)
11747 html: |-
11748 <p><img src="/url2" alt="foo bar" /></p>
11749 - title: Images - example 575
11750 mdast:
11751 type: root
11752 children:
11753 - type: paragraph
11754 children:
11755 - type: image
11756 url: train.jpg
11757 alt: foo bar
11758 title: train & tracks
11759 myst: |
11760 ![foo *bar*][]
11761
11762 [foo *bar*]: train.jpg "train & tracks"
11763 html: |-
11764 <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
11765 - title: Images - example 576
11766 mdast:
11767 type: root
11768 children:
11769 - type: paragraph
11770 children:
11771 - type: image
11772 url: train.jpg
11773 alt: foo bar
11774 title: train & tracks
11775 myst: |
11776 ![foo *bar*][foobar]
11777
11778 [FOOBAR]: train.jpg "train & tracks"
11779 html: |-
11780 <p><img src="train.jpg" alt="foo bar" title="train &amp; tracks" /></p>
11781 - title: Images - example 577
11782 mdast:
11783 type: root
11784 children:
11785 - type: paragraph
11786 children:
11787 - type: image
11788 url: train.jpg
11789 alt: foo
11790 myst: |
11791 ![foo](train.jpg)
11792 html: |-
11793 <p><img src="train.jpg" alt="foo" /></p>
11794 - title: Images - example 578
11795 mdast:
11796 type: root
11797 children:
11798 - type: paragraph
11799 children:
11800 - type: text
11801 value: 'My '
11802 - type: image
11803 url: /path/to/train.jpg
11804 alt: foo bar
11805 title: title
11806 myst: |
11807 My ![foo bar](/path/to/train.jpg "title" )
11808 html: |-
11809 <p>My <img src="/path/to/train.jpg" alt="foo bar" title="title" /></p>
11810 - title: Images - example 579
11811 mdast:
11812 type: root
11813 children:
11814 - type: paragraph
11815 children:
11816 - type: image
11817 url: url
11818 alt: foo
11819 myst: |
11820 ![foo](<url>)
11821 html: |-
11822 <p><img src="url" alt="foo" /></p>
11823 - title: Images - example 580
11824 mdast:
11825 type: root
11826 children:
11827 - type: paragraph
11828 children:
11829 - type: image
11830 url: /url
11831 myst: |
11832 ![](/url)
11833 html: |-
11834 <p><img src="/url" alt="" /></p>
11835 - title: Images - example 581
11836 mdast:
11837 type: root
11838 children:
11839 - type: paragraph
11840 children:
11841 - type: image
11842 url: /url
11843 alt: foo
11844 myst: |
11845 ![foo][bar]
11846
11847 [bar]: /url
11848 html: |-
11849 <p><img src="/url" alt="foo" /></p>
11850 - title: Images - example 582
11851 mdast:
11852 type: root
11853 children:
11854 - type: paragraph
11855 children:
11856 - type: image
11857 url: /url
11858 alt: foo
11859 myst: |
11860 ![foo][bar]
11861
11862 [BAR]: /url
11863 html: |-
11864 <p><img src="/url" alt="foo" /></p>
11865 - title: Images - example 583
11866 mdast:
11867 type: root
11868 children:
11869 - type: paragraph
11870 children:
11871 - type: image
11872 url: /url
11873 alt: foo
11874 title: title
11875 myst: |
11876 ![foo][]
11877
11878 [foo]: /url "title"
11879 html: |-
11880 <p><img src="/url" alt="foo" title="title" /></p>
11881 - title: Images - example 584
11882 mdast:
11883 type: root
11884 children:
11885 - type: paragraph
11886 children:
11887 - type: image
11888 url: /url
11889 alt: foo bar
11890 title: title
11891 myst: |
11892 ![*foo* bar][]
11893
11894 [*foo* bar]: /url "title"
11895 html: |-
11896 <p><img src="/url" alt="foo bar" title="title" /></p>
11897 - title: Images - example 585
11898 mdast:
11899 type: root
11900 children:
11901 - type: paragraph
11902 children:
11903 - type: image
11904 url: /url
11905 alt: Foo
11906 title: title
11907 myst: |
11908 ![Foo][]
11909
11910 [foo]: /url "title"
11911 html: |-
11912 <p><img src="/url" alt="Foo" title="title" /></p>
11913 - title: Images - example 586
11914 mdast:
11915 type: root
11916 children:
11917 - type: paragraph
11918 children:
11919 - type: image
11920 url: /url
11921 alt: foo
11922 title: title
11923 - type: text
11924 value: |-
11925
11926 []
11927 myst: |
11928 ![foo]
11929 []
11930
11931 [foo]: /url "title"
11932 html: |-
11933 <p><img src="/url" alt="foo" title="title" />
11934 []</p>
11935 - title: Images - example 587
11936 mdast:
11937 type: root
11938 children:
11939 - type: paragraph
11940 children:
11941 - type: image
11942 url: /url
11943 alt: foo
11944 title: title
11945 myst: |
11946 ![foo]
11947
11948 [foo]: /url "title"
11949 html: |-
11950 <p><img src="/url" alt="foo" title="title" /></p>
11951 - title: Images - example 588
11952 mdast:
11953 type: root
11954 children:
11955 - type: paragraph
11956 children:
11957 - type: image
11958 url: /url
11959 alt: foo bar
11960 title: title
11961 myst: |
11962 ![*foo* bar]
11963
11964 [*foo* bar]: /url "title"
11965 html: |-
11966 <p><img src="/url" alt="foo bar" title="title" /></p>
11967 - title: Images - example 589
11968 mdast:
11969 type: root
11970 children:
11971 - type: paragraph
11972 children:
11973 - type: text
11974 value: '![[foo]]'
11975 - type: paragraph
11976 children:
11977 - type: text
11978 value: '[[foo]]: /url "title"'
11979 myst: |
11980 ![[foo]]
11981
11982 [[foo]]: /url "title"
11983 html: |-
11984 <p>![[foo]]</p>
11985 <p>[[foo]]: /url &quot;title&quot;</p>
11986 - title: Images - example 590
11987 mdast:
11988 type: root
11989 children:
11990 - type: paragraph
11991 children:
11992 - type: image
11993 url: /url
11994 alt: Foo
11995 title: title
11996 myst: |
11997 ![Foo]
11998
11999 [foo]: /url "title"
12000 html: |-
12001 <p><img src="/url" alt="Foo" title="title" /></p>
12002 - title: Images - example 591
12003 mdast:
12004 type: root
12005 children:
12006 - type: paragraph
12007 children:
12008 - type: text
12009 value: '![foo]'
12010 myst: |
12011 !\[foo]
12012
12013 [foo]: /url "title"
12014 html: |-
12015 <p>![foo]</p>
12016 - title: Images - example 592
12017 mdast:
12018 type: root
12019 children:
12020 - type: paragraph
12021 children:
12022 - type: text
12023 value: '!'
12024 - type: link
12025 url: /url
12026 title: title
12027 children:
12028 - type: text
12029 value: foo
12030 myst: |
12031 \![foo]
12032
12033 [foo]: /url "title"
12034 html: |-
12035 <p>!<a href="/url" title="title">foo</a></p>
12036 - title: Autolinks - example 593
12037 mdast:
12038 type: root
12039 children:
12040 - type: paragraph
12041 children:
12042 - type: link
12043 url: http://foo.bar.baz
12044 children:
12045 - type: text
12046 value: http://foo.bar.baz
12047 myst: |
12048 <http://foo.bar.baz>
12049 html: |-
12050 <p><a href="http://foo.bar.baz">http://foo.bar.baz</a></p>
12051 - title: Autolinks - example 594
12052 mdast:
12053 type: root
12054 children:
12055 - type: paragraph
12056 children:
12057 - type: link
12058 url: http://foo.bar.baz/test?q=hello&id=22&boolean
12059 children:
12060 - type: text
12061 value: http://foo.bar.baz/test?q=hello&id=22&boolean
12062 myst: |
12063 <http://foo.bar.baz/test?q=hello&id=22&boolean>
12064 html: >
12065 <p><a
12066 href="http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean">http://foo.bar.baz/test?q=hello&amp;id=22&amp;boolean</a></p>
12067 - title: Autolinks - example 595
12068 mdast:
12069 type: root
12070 children:
12071 - type: paragraph
12072 children:
12073 - type: link
12074 url: irc://foo.bar:2233/baz
12075 children:
12076 - type: text
12077 value: irc://foo.bar:2233/baz
12078 myst: |
12079 <irc://foo.bar:2233/baz>
12080 html: |-
12081 <p><a href="irc://foo.bar:2233/baz">irc://foo.bar:2233/baz</a></p>
12082 - title: Autolinks - example 596
12083 mdast:
12084 type: root
12085 children:
12086 - type: paragraph
12087 children:
12088 - type: link
12089 url: MAILTO:FOO@BAR.BAZ
12090 children:
12091 - type: text
12092 value: MAILTO:FOO@BAR.BAZ
12093 myst: |
12094 <MAILTO:FOO@BAR.BAZ>
12095 html: |-
12096 <p><a href="MAILTO:FOO@BAR.BAZ">MAILTO:FOO@BAR.BAZ</a></p>
12097 - title: Autolinks - example 597
12098 mdast:
12099 type: root
12100 children:
12101 - type: paragraph
12102 children:
12103 - type: link
12104 url: a+b+c:d
12105 children:
12106 - type: text
12107 value: a+b+c:d
12108 myst: |
12109 <a+b+c:d>
12110 html: |-
12111 <p><a href="a+b+c:d">a+b+c:d</a></p>
12112 - title: Autolinks - example 598
12113 mdast:
12114 type: root
12115 children:
12116 - type: paragraph
12117 children:
12118 - type: link
12119 url: made-up-scheme://foo,bar
12120 children:
12121 - type: text
12122 value: made-up-scheme://foo,bar
12123 myst: |
12124 <made-up-scheme://foo,bar>
12125 html: |-
12126 <p><a href="made-up-scheme://foo,bar">made-up-scheme://foo,bar</a></p>
12127 - title: Autolinks - example 599
12128 mdast:
12129 type: root
12130 children:
12131 - type: paragraph
12132 children:
12133 - type: link
12134 url: http://../
12135 children:
12136 - type: text
12137 value: http://../
12138 myst: |
12139 <http://../>
12140 html: |-
12141 <p><a href="http://../">http://../</a></p>
12142 - title: Autolinks - example 600
12143 mdast:
12144 type: root
12145 children:
12146 - type: paragraph
12147 children:
12148 - type: link
12149 url: localhost:5001/foo
12150 children:
12151 - type: text
12152 value: localhost:5001/foo
12153 myst: |
12154 <localhost:5001/foo>
12155 html: |-
12156 <p><a href="localhost:5001/foo">localhost:5001/foo</a></p>
12157 - title: Autolinks - example 601
12158 mdast:
12159 type: root
12160 children:
12161 - type: paragraph
12162 children:
12163 - type: text
12164 value: <http://foo.bar/baz bim>
12165 myst: |
12166 <http://foo.bar/baz bim>
12167 html: |-
12168 <p>&lt;http://foo.bar/baz bim&gt;</p>
12169 - title: Autolinks - example 602
12170 mdast:
12171 type: root
12172 children:
12173 - type: paragraph
12174 children:
12175 - type: link
12176 url: http://example.com/%5C%5B%5C
12177 children:
12178 - type: text
12179 value: http://example.com/\[\
12180 myst: |
12181 <http://example.com/\[\>
12182 html: |-
12183 <p><a href="http://example.com/%5C%5B%5C">http://example.com/\[\</a></p>
12184 - title: Autolinks - example 603
12185 mdast:
12186 type: root
12187 children:
12188 - type: paragraph
12189 children:
12190 - type: link
12191 url: mailto:foo@bar.example.com
12192 children:
12193 - type: text
12194 value: foo@bar.example.com
12195 myst: |
12196 <foo@bar.example.com>
12197 html: |-
12198 <p><a href="mailto:foo@bar.example.com">foo@bar.example.com</a></p>
12199 - title: Autolinks - example 604
12200 mdast:
12201 type: root
12202 children:
12203 - type: paragraph
12204 children:
12205 - type: link
12206 url: mailto:foo+special@Bar.baz-bar0.com
12207 children:
12208 - type: text
12209 value: foo+special@Bar.baz-bar0.com
12210 myst: |
12211 <foo+special@Bar.baz-bar0.com>
12212 html: >
12213 <p><a
12214 href="mailto:foo+special@Bar.baz-bar0.com">foo+special@Bar.baz-bar0.com</a></p>
12215 - title: Autolinks - example 605
12216 mdast:
12217 type: root
12218 children:
12219 - type: paragraph
12220 children:
12221 - type: text
12222 value: <foo+@bar.example.com>
12223 myst: |
12224 <foo\+@bar.example.com>
12225 html: |-
12226 <p>&lt;foo+@bar.example.com&gt;</p>
12227 - title: Autolinks - example 606
12228 mdast:
12229 type: root
12230 children:
12231 - type: paragraph
12232 children:
12233 - type: text
12234 value: <>
12235 myst: |
12236 <>
12237 html: |-
12238 <p>&lt;&gt;</p>
12239 - title: Autolinks - example 607
12240 mdast:
12241 type: root
12242 children:
12243 - type: paragraph
12244 children:
12245 - type: text
12246 value: < http://foo.bar >
12247 myst: |
12248 < http://foo.bar >
12249 html: |-
12250 <p>&lt; http://foo.bar &gt;</p>
12251 - title: Autolinks - example 608
12252 mdast:
12253 type: root
12254 children:
12255 - type: paragraph
12256 children:
12257 - type: text
12258 value: <m:abc>
12259 myst: |
12260 <m:abc>
12261 html: |-
12262 <p>&lt;m:abc&gt;</p>
12263 - title: Autolinks - example 609
12264 mdast:
12265 type: root
12266 children:
12267 - type: paragraph
12268 children:
12269 - type: text
12270 value: <foo.bar.baz>
12271 myst: |
12272 <foo.bar.baz>
12273 html: |-
12274 <p>&lt;foo.bar.baz&gt;</p>
12275 - title: Autolinks - example 610
12276 mdast:
12277 type: root
12278 children:
12279 - type: paragraph
12280 children:
12281 - type: text
12282 value: http://example.com
12283 myst: |
12284 http://example.com
12285 html: |-
12286 <p>http://example.com</p>
12287 - title: Autolinks - example 611
12288 mdast:
12289 type: root
12290 children:
12291 - type: paragraph
12292 children:
12293 - type: text
12294 value: foo@bar.example.com
12295 myst: |
12296 foo@bar.example.com
12297 html: |-
12298 <p>foo@bar.example.com</p>
12299 - title: Raw HTML - example 612
12300 mdast:
12301 type: root
12302 children:
12303 - type: paragraph
12304 children:
12305 - type: html
12306 value: <a>
12307 - type: html
12308 value: <bab>
12309 - type: html
12310 value: <c2c>
12311 myst: |
12312 <a><bab><c2c>
12313 html: |-
12314 <p><a><bab><c2c></p>
12315 - title: Raw HTML - example 613
12316 mdast:
12317 type: root
12318 children:
12319 - type: paragraph
12320 children:
12321 - type: html
12322 value: <a/>
12323 - type: html
12324 value: <b2/>
12325 myst: |
12326 <a/><b2/>
12327 html: |-
12328 <p><a/><b2/></p>
12329 - title: Raw HTML - example 614
12330 mdast:
12331 type: root
12332 children:
12333 - type: paragraph
12334 children:
12335 - type: html
12336 value: <a />
12337 - type: html
12338 value: |-
12339 <b2
12340 data="foo" >
12341 myst: |
12342 <a /><b2
12343 data="foo" >
12344 html: |-
12345 <p><a /><b2
12346 data="foo" ></p>
12347 - title: Raw HTML - example 615
12348 mdast:
12349 type: root
12350 children:
12351 - type: paragraph
12352 children:
12353 - type: html
12354 value: |-
12355 <a foo="bar" bam = 'baz <em>"</em>'
12356 _boolean zoop:33=zoop:33 />
12357 myst: |
12358 <a foo="bar" bam = 'baz <em>"</em>'
12359 _boolean zoop:33=zoop:33 />
12360 html: |-
12361 <p><a foo="bar" bam = 'baz <em>"</em>'
12362 _boolean zoop:33=zoop:33 /></p>
12363 - title: Raw HTML - example 616
12364 mdast:
12365 type: root
12366 children:
12367 - type: paragraph
12368 children:
12369 - type: text
12370 value: 'Foo '
12371 - type: html
12372 value: <responsive-image src="foo.jpg" />
12373 myst: |
12374 Foo <responsive-image src="foo.jpg" />
12375 html: |-
12376 <p>Foo <responsive-image src="foo.jpg" /></p>
12377 - title: Raw HTML - example 617
12378 mdast:
12379 type: root
12380 children:
12381 - type: paragraph
12382 children:
12383 - type: text
12384 value: <33> <__>
12385 myst: |
12386 <33> <__>
12387 html: |-
12388 <p>&lt;33&gt; &lt;__&gt;</p>
12389 - title: Raw HTML - example 618
12390 mdast:
12391 type: root
12392 children:
12393 - type: paragraph
12394 children:
12395 - type: text
12396 value: <a h*#ref="hi">
12397 myst: |
12398 <a h*#ref="hi">
12399 html: |-
12400 <p>&lt;a h*#ref=&quot;hi&quot;&gt;</p>
12401 - title: Raw HTML - example 619
12402 mdast:
12403 type: root
12404 children:
12405 - type: paragraph
12406 children:
12407 - type: text
12408 value: <a href="hi'> <a href=hi'>
12409 myst: |
12410 <a href="hi'> <a href=hi'>
12411 html: |-
12412 <p>&lt;a href=&quot;hi'&gt; &lt;a href=hi'&gt;</p>
12413 - title: Raw HTML - example 620
12414 mdast:
12415 type: root
12416 children:
12417 - type: paragraph
12418 children:
12419 - type: text
12420 value: |-
12421 < a><
12422 foo><bar/ >
12423 <foo bar=baz
12424 bim!bop />
12425 myst: |
12426 < a><
12427 foo><bar/ >
12428 <foo bar=baz
12429 bim!bop />
12430 html: |-
12431 <p>&lt; a&gt;&lt;
12432 foo&gt;&lt;bar/ &gt;
12433 &lt;foo bar=baz
12434 bim!bop /&gt;</p>
12435 - title: Raw HTML - example 621
12436 mdast:
12437 type: root
12438 children:
12439 - type: paragraph
12440 children:
12441 - type: text
12442 value: <a href='bar'title=title>
12443 myst: |
12444 <a href='bar'title=title>
12445 html: |-
12446 <p>&lt;a href='bar'title=title&gt;</p>
12447 - title: Raw HTML - example 622
12448 mdast:
12449 type: root
12450 children:
12451 - type: paragraph
12452 children:
12453 - type: html
12454 value: </a>
12455 - type: html
12456 value: </foo >
12457 myst: |
12458 </a></foo >
12459 html: |-
12460 <p></a></foo ></p>
12461 - title: Raw HTML - example 623
12462 mdast:
12463 type: root
12464 children:
12465 - type: paragraph
12466 children:
12467 - type: text
12468 value: </a href="foo">
12469 myst: |
12470 </a href="foo">
12471 html: |-
12472 <p>&lt;/a href=&quot;foo&quot;&gt;</p>
12473 - title: Raw HTML - example 624
12474 mdast:
12475 type: root
12476 children:
12477 - type: paragraph
12478 children:
12479 - type: text
12480 value: 'foo '
12481 - type: html
12482 value: |-
12483 <!-- this is a
12484 comment - with hyphen -->
12485 myst: |
12486 foo <!-- this is a
12487 comment - with hyphen -->
12488 html: |-
12489 <p>foo <!-- this is a
12490 comment - with hyphen --></p>
12491 - title: Raw HTML - example 625
12492 mdast:
12493 type: root
12494 children:
12495 - type: paragraph
12496 children:
12497 - type: text
12498 value: foo <!-- not a comment -- two hyphens -->
12499 myst: |
12500 foo <!-- not a comment -- two hyphens -->
12501 html: |-
12502 <p>foo &lt;!-- not a comment -- two hyphens --&gt;</p>
12503 - title: Raw HTML - example 626
12504 mdast:
12505 type: root
12506 children:
12507 - type: paragraph
12508 children:
12509 - type: text
12510 value: foo <!--> foo -->
12511 - type: paragraph
12512 children:
12513 - type: text
12514 value: foo <!-- foo--->
12515 myst: |
12516 foo <!--> foo -->
12517
12518 foo <!-- foo--->
12519 html: |-
12520 <p>foo &lt;!--&gt; foo --&gt;</p>
12521 <p>foo &lt;!-- foo---&gt;</p>
12522 - title: Raw HTML - example 627
12523 mdast:
12524 type: root
12525 children:
12526 - type: paragraph
12527 children:
12528 - type: text
12529 value: 'foo '
12530 - type: html
12531 value: <?php echo $a; ?>
12532 myst: |
12533 foo <?php echo $a; ?>
12534 html: |-
12535 <p>foo <?php echo $a; ?></p>
12536 - title: Raw HTML - example 628
12537 mdast:
12538 type: root
12539 children:
12540 - type: paragraph
12541 children:
12542 - type: text
12543 value: 'foo '
12544 - type: html
12545 value: <!ELEMENT br EMPTY>
12546 myst: |
12547 foo <!ELEMENT br EMPTY>
12548 html: |-
12549 <p>foo <!ELEMENT br EMPTY></p>
12550 - title: Raw HTML - example 629
12551 mdast:
12552 type: root
12553 children:
12554 - type: paragraph
12555 children:
12556 - type: text
12557 value: 'foo '
12558 - type: html
12559 value: <![CDATA[>&<]]>
12560 myst: |
12561 foo <![CDATA[>&<]]>
12562 html: |-
12563 <p>foo <![CDATA[>&<]]></p>
12564 - title: Raw HTML - example 630
12565 mdast:
12566 type: root
12567 children:
12568 - type: paragraph
12569 children:
12570 - type: text
12571 value: 'foo '
12572 - type: html
12573 value: <a href="&ouml;">
12574 myst: |
12575 foo <a href="&ouml;">
12576 html: |-
12577 <p>foo <a href="&ouml;"></p>
12578 - title: Raw HTML - example 631
12579 mdast:
12580 type: root
12581 children:
12582 - type: paragraph
12583 children:
12584 - type: text
12585 value: 'foo '
12586 - type: html
12587 value: <a href="\*">
12588 myst: |
12589 foo <a href="\*">
12590 html: |-
12591 <p>foo <a href="\*"></p>
12592 - title: Raw HTML - example 632
12593 mdast:
12594 type: root
12595 children:
12596 - type: paragraph
12597 children:
12598 - type: text
12599 value: <a href=""">
12600 myst: |
12601 <a href="\"">
12602 html: |-
12603 <p>&lt;a href=&quot;&quot;&quot;&gt;</p>
12604 - title: Hard line breaks - example 633
12605 mdast:
12606 type: root
12607 children:
12608 - type: paragraph
12609 children:
12610 - type: text
12611 value: foo
12612 - type: break
12613 - type: text
12614 value: baz
12615 myst: |
12616 foo
12617 baz
12618 html: |-
12619 <p>foo<br />
12620 baz</p>
12621 - title: Hard line breaks - example 634
12622 mdast:
12623 type: root
12624 children:
12625 - type: paragraph
12626 children:
12627 - type: text
12628 value: foo
12629 - type: break
12630 - type: text
12631 value: baz
12632 myst: |
12633 foo\
12634 baz
12635 html: |-
12636 <p>foo<br />
12637 baz</p>
12638 - title: Hard line breaks - example 635
12639 mdast:
12640 type: root
12641 children:
12642 - type: paragraph
12643 children:
12644 - type: text
12645 value: foo
12646 - type: break
12647 - type: text
12648 value: baz
12649 myst: |
12650 foo
12651 baz
12652 html: |-
12653 <p>foo<br />
12654 baz</p>
12655 - title: Hard line breaks - example 636
12656 mdast:
12657 type: root
12658 children:
12659 - type: paragraph
12660 children:
12661 - type: text
12662 value: foo
12663 - type: break
12664 - type: text
12665 value: bar
12666 myst: |
12667 foo
12668 bar
12669 html: |-
12670 <p>foo<br />
12671 bar</p>
12672 - title: Hard line breaks - example 637
12673 mdast:
12674 type: root
12675 children:
12676 - type: paragraph
12677 children:
12678 - type: text
12679 value: foo
12680 - type: break
12681 - type: text
12682 value: bar
12683 myst: |
12684 foo\
12685 bar
12686 html: |-
12687 <p>foo<br />
12688 bar</p>
12689 - title: Hard line breaks - example 638
12690 mdast:
12691 type: root
12692 children:
12693 - type: paragraph
12694 children:
12695 - type: emphasis
12696 children:
12697 - type: text
12698 value: foo
12699 - type: break
12700 - type: text
12701 value: bar
12702 myst: |
12703 *foo
12704 bar*
12705 html: |-
12706 <p><em>foo<br />
12707 bar</em></p>
12708 - title: Hard line breaks - example 639
12709 mdast:
12710 type: root
12711 children:
12712 - type: paragraph
12713 children:
12714 - type: emphasis
12715 children:
12716 - type: text
12717 value: foo
12718 - type: break
12719 - type: text
12720 value: bar
12721 myst: |
12722 *foo\
12723 bar*
12724 html: |-
12725 <p><em>foo<br />
12726 bar</em></p>
12727 - title: Hard line breaks - example 640
12728 mdast:
12729 type: root
12730 children:
12731 - type: paragraph
12732 children:
12733 - type: inlineCode
12734 value: code span
12735 myst: |
12736 `code
12737 span`
12738 html: |-
12739 <p><code>code span</code></p>
12740 - title: Hard line breaks - example 641
12741 mdast:
12742 type: root
12743 children:
12744 - type: paragraph
12745 children:
12746 - type: inlineCode
12747 value: code\ span
12748 myst: |
12749 `code\
12750 span`
12751 html: |-
12752 <p><code>code\ span</code></p>
12753 - title: Hard line breaks - example 642
12754 mdast:
12755 type: root
12756 children:
12757 - type: paragraph
12758 children:
12759 - type: html
12760 value: |-
12761 <a href="foo
12762 bar">
12763 myst: |
12764 <a href="foo
12765 bar">
12766 html: |-
12767 <p><a href="foo
12768 bar"></p>
12769 - title: Hard line breaks - example 643
12770 mdast:
12771 type: root
12772 children:
12773 - type: paragraph
12774 children:
12775 - type: html
12776 value: |-
12777 <a href="foo\
12778 bar">
12779 myst: |
12780 <a href="foo\
12781 bar">
12782 html: |-
12783 <p><a href="foo\
12784 bar"></p>
12785 - title: Hard line breaks - example 644
12786 mdast:
12787 type: root
12788 children:
12789 - type: paragraph
12790 children:
12791 - type: text
12792 value: foo\
12793 myst: |
12794 foo\
12795 html: |-
12796 <p>foo\</p>
12797 - title: Hard line breaks - example 645
12798 mdast:
12799 type: root
12800 children:
12801 - type: paragraph
12802 children:
12803 - type: text
12804 value: foo
12805 myst: |
12806 foo
12807 html: |-
12808 <p>foo</p>
12809 - title: Hard line breaks - example 646
12810 mdast:
12811 type: root
12812 children:
12813 - type: heading
12814 depth: 3
12815 children:
12816 - type: text
12817 value: foo\
12818 myst: |
12819 ### foo\
12820 html: |-
12821 <h3>foo\</h3>
12822 - title: Hard line breaks - example 647
12823 mdast:
12824 type: root
12825 children:
12826 - type: heading
12827 depth: 3
12828 children:
12829 - type: text
12830 value: foo
12831 myst: |
12832 ### foo
12833 html: |-
12834 <h3>foo</h3>
12835 - title: Soft line breaks - example 648
12836 mdast:
12837 type: root
12838 children:
12839 - type: paragraph
12840 children:
12841 - type: text
12842 value: |-
12843 foo
12844 baz
12845 myst: |
12846 foo
12847 baz
12848 html: |-
12849 <p>foo
12850 baz</p>
12851 - title: Soft line breaks - example 649
12852 mdast:
12853 type: root
12854 children:
12855 - type: paragraph
12856 children:
12857 - type: text
12858 value: |-
12859 foo
12860 baz
12861 myst: |
12862 foo
12863 baz
12864 html: |-
12865 <p>foo
12866 baz</p>
12867 - title: Textual content - example 650
12868 mdast:
12869 type: root
12870 children:
12871 - type: paragraph
12872 children:
12873 - type: text
12874 value: hello $.;'there
12875 myst: |
12876 hello $.;'there
12877 html: |-
12878 <p>hello $.;'there</p>
12879 - title: Textual content - example 651
12880 mdast:
12881 type: root
12882 children:
12883 - type: paragraph
12884 children:
12885 - type: text
12886 value: Foo χρῆν
12887 myst: |
12888 Foo χρῆν
12889 html: |-
12890 <p>Foo χρῆν</p>
12891 - title: Textual content - example 652
12892 mdast:
12893 type: root
12894 children:
12895 - type: paragraph
12896 children:
12897 - type: text
12898 value: Multiple spaces
12899 myst: |
12900 Multiple spaces
12901 html: |-
12902 <p>Multiple spaces</p>