kramdown 1.17.0 → 2.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of kramdown might be problematic. Click here for more details.

Files changed (196) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTERS +4 -2
  3. data/VERSION +1 -1
  4. data/bin/kramdown +13 -14
  5. data/lib/kramdown.rb +2 -2
  6. data/lib/kramdown/converter.rb +6 -7
  7. data/lib/kramdown/converter/base.rb +18 -29
  8. data/lib/kramdown/converter/hash_ast.rb +4 -4
  9. data/lib/kramdown/converter/html.rb +82 -67
  10. data/lib/kramdown/converter/kramdown.rb +83 -78
  11. data/lib/kramdown/converter/latex.rb +53 -47
  12. data/lib/kramdown/converter/man.rb +22 -25
  13. data/lib/kramdown/converter/math_engine/mathjax.rb +10 -10
  14. data/lib/kramdown/converter/remove_html_tags.rb +2 -2
  15. data/lib/kramdown/converter/syntax_highlighter.rb +2 -2
  16. data/lib/kramdown/converter/syntax_highlighter/minted.rb +2 -2
  17. data/lib/kramdown/converter/syntax_highlighter/rouge.rb +5 -5
  18. data/lib/kramdown/converter/toc.rb +5 -5
  19. data/lib/kramdown/document.rb +9 -11
  20. data/lib/kramdown/element.rb +11 -9
  21. data/lib/kramdown/error.rb +2 -2
  22. data/lib/kramdown/options.rb +258 -384
  23. data/lib/kramdown/parser.rb +2 -3
  24. data/lib/kramdown/parser/base.rb +7 -6
  25. data/lib/kramdown/parser/html.rb +103 -95
  26. data/lib/kramdown/parser/kramdown.rb +32 -36
  27. data/lib/kramdown/parser/kramdown/abbreviation.rb +13 -10
  28. data/lib/kramdown/parser/kramdown/autolink.rb +3 -3
  29. data/lib/kramdown/parser/kramdown/blank_line.rb +2 -2
  30. data/lib/kramdown/parser/kramdown/block_boundary.rb +2 -2
  31. data/lib/kramdown/parser/kramdown/blockquote.rb +4 -5
  32. data/lib/kramdown/parser/kramdown/codeblock.rb +4 -5
  33. data/lib/kramdown/parser/kramdown/codespan.rb +5 -5
  34. data/lib/kramdown/parser/kramdown/emphasis.rb +6 -6
  35. data/lib/kramdown/parser/kramdown/eob.rb +2 -2
  36. data/lib/kramdown/parser/kramdown/escaped_chars.rb +2 -2
  37. data/lib/kramdown/parser/kramdown/extensions.rb +31 -26
  38. data/lib/kramdown/parser/kramdown/footnote.rb +7 -6
  39. data/lib/kramdown/parser/kramdown/header.rb +6 -6
  40. data/lib/kramdown/parser/kramdown/horizontal_rule.rb +3 -3
  41. data/lib/kramdown/parser/kramdown/html.rb +31 -26
  42. data/lib/kramdown/parser/kramdown/html_entity.rb +6 -5
  43. data/lib/kramdown/parser/kramdown/line_break.rb +3 -3
  44. data/lib/kramdown/parser/kramdown/link.rb +13 -11
  45. data/lib/kramdown/parser/kramdown/list.rb +38 -40
  46. data/lib/kramdown/parser/kramdown/math.rb +4 -5
  47. data/lib/kramdown/parser/kramdown/paragraph.rb +5 -5
  48. data/lib/kramdown/parser/kramdown/smart_quotes.rb +23 -23
  49. data/lib/kramdown/parser/kramdown/table.rb +18 -17
  50. data/lib/kramdown/parser/kramdown/typographic_symbol.rb +8 -8
  51. data/lib/kramdown/parser/markdown.rb +9 -8
  52. data/lib/kramdown/utils.rb +5 -6
  53. data/lib/kramdown/utils/configurable.rb +7 -6
  54. data/lib/kramdown/utils/entities.rb +286 -289
  55. data/lib/kramdown/utils/html.rb +10 -12
  56. data/lib/kramdown/utils/lru_cache.rb +3 -2
  57. data/lib/kramdown/utils/string_scanner.rb +2 -3
  58. data/lib/kramdown/utils/unidecoder.rb +8 -6
  59. data/lib/kramdown/version.rb +3 -3
  60. data/man/man1/kramdown.1 +3 -107
  61. data/test/run_tests.rb +6 -6
  62. data/test/test_files.rb +122 -298
  63. data/test/test_location.rb +8 -30
  64. data/test/test_string_scanner_kramdown.rb +6 -9
  65. data/test/testcases/block/06_codeblock/highlighting-opts.html +6 -6
  66. data/test/testcases/block/06_codeblock/highlighting.html +5 -6
  67. data/test/testcases/block/06_codeblock/with_lang_in_fenced_block.options +1 -1
  68. data/test/testcases/block/07_horizontal_rule/error.html +2 -2
  69. data/test/testcases/block/09_html/html5_attributes.html +2 -0
  70. data/test/testcases/block/09_html/html5_attributes.text +2 -0
  71. data/test/testcases/block/09_html/html_to_native/typography.html +1 -1
  72. data/test/testcases/block/09_html/simple.html +1 -1
  73. data/test/testcases/block/12_extension/options3.html +7 -6
  74. data/test/testcases/block/12_extension/options3.text +2 -2
  75. data/test/testcases/span/01_link/inline.html +1 -1
  76. data/test/testcases/span/01_link/reference.html +3 -3
  77. data/test/testcases/span/03_codespan/highlighting.html +1 -1
  78. data/test/testcases/span/text_substitutions/entities_as_char.html +1 -1
  79. metadata +5 -234
  80. data/Rakefile +0 -341
  81. data/benchmark/benchmark.rb +0 -43
  82. data/benchmark/benchmark.sh +0 -74
  83. data/benchmark/generate_data.rb +0 -119
  84. data/benchmark/mdbasics.text +0 -306
  85. data/benchmark/mdsyntax.text +0 -888
  86. data/benchmark/testing.sh +0 -12
  87. data/benchmark/timing.sh +0 -10
  88. data/doc/_design.scss +0 -441
  89. data/doc/bg.png +0 -0
  90. data/doc/default.scss +0 -217
  91. data/doc/default.template +0 -62
  92. data/doc/documentation.page +0 -84
  93. data/doc/documentation.template +0 -36
  94. data/doc/index.page +0 -113
  95. data/doc/installation.page +0 -88
  96. data/doc/links.markdown +0 -6
  97. data/doc/metainfo +0 -13
  98. data/doc/news.feed +0 -9
  99. data/doc/news.page +0 -29
  100. data/doc/options.page +0 -49
  101. data/doc/quickref.page +0 -603
  102. data/doc/sidebar.template +0 -22
  103. data/doc/sitemap.sitemap +0 -5
  104. data/doc/syntax.page +0 -1799
  105. data/doc/tests.page +0 -104
  106. data/doc/virtual +0 -14
  107. data/lib/kramdown/converter/math_engine/itex2mml.rb +0 -39
  108. data/lib/kramdown/converter/math_engine/katex.rb +0 -35
  109. data/lib/kramdown/converter/math_engine/mathjaxnode.rb +0 -56
  110. data/lib/kramdown/converter/math_engine/ritex.rb +0 -38
  111. data/lib/kramdown/converter/math_engine/sskatex.rb +0 -97
  112. data/lib/kramdown/converter/pdf.rb +0 -625
  113. data/lib/kramdown/converter/syntax_highlighter/coderay.rb +0 -81
  114. data/lib/kramdown/parser/gfm.rb +0 -188
  115. data/lib/kramdown/utils/ordered_hash.rb +0 -18
  116. data/setup.rb +0 -1585
  117. data/test/testcases/block/07_horizontal_rule/error.html.19 +0 -7
  118. data/test/testcases/block/09_html/html_to_native/typography.html.19 +0 -1
  119. data/test/testcases/block/09_html/simple.html.19 +0 -60
  120. data/test/testcases/block/15_math/itex2mml.html +0 -1
  121. data/test/testcases/block/15_math/itex2mml.options +0 -1
  122. data/test/testcases/block/15_math/itex2mml.text +0 -1
  123. data/test/testcases/block/15_math/katex.html.19 +0 -2
  124. data/test/testcases/block/15_math/katex.options +0 -1
  125. data/test/testcases/block/15_math/katex.text +0 -2
  126. data/test/testcases/block/15_math/mathjaxnode.html.19 +0 -27
  127. data/test/testcases/block/15_math/mathjaxnode.options +0 -1
  128. data/test/testcases/block/15_math/mathjaxnode.text +0 -1
  129. data/test/testcases/block/15_math/mathjaxnode_notexhints.html.19 +0 -23
  130. data/test/testcases/block/15_math/mathjaxnode_notexhints.options +0 -3
  131. data/test/testcases/block/15_math/mathjaxnode_notexhints.text +0 -1
  132. data/test/testcases/block/15_math/mathjaxnode_semantics.html.19 +0 -32
  133. data/test/testcases/block/15_math/mathjaxnode_semantics.options +0 -3
  134. data/test/testcases/block/15_math/mathjaxnode_semantics.text +0 -1
  135. data/test/testcases/block/15_math/ritex.html +0 -1
  136. data/test/testcases/block/15_math/ritex.options +0 -1
  137. data/test/testcases/block/15_math/ritex.text +0 -1
  138. data/test/testcases/block/15_math/sskatex.html.19 +0 -2
  139. data/test/testcases/block/15_math/sskatex.options +0 -1
  140. data/test/testcases/block/15_math/sskatex.text +0 -2
  141. data/test/testcases/span/01_link/inline.html.19 +0 -46
  142. data/test/testcases/span/01_link/reference.html.19 +0 -37
  143. data/test/testcases/span/math/itex2mml.html +0 -1
  144. data/test/testcases/span/math/itex2mml.options +0 -1
  145. data/test/testcases/span/math/itex2mml.text +0 -1
  146. data/test/testcases/span/math/katex.html.19 +0 -1
  147. data/test/testcases/span/math/katex.options +0 -1
  148. data/test/testcases/span/math/katex.text +0 -1
  149. data/test/testcases/span/math/mathjaxnode.html.19 +0 -27
  150. data/test/testcases/span/math/mathjaxnode.options +0 -1
  151. data/test/testcases/span/math/mathjaxnode.text +0 -1
  152. data/test/testcases/span/math/ritex.html +0 -1
  153. data/test/testcases/span/math/ritex.options +0 -1
  154. data/test/testcases/span/math/ritex.text +0 -1
  155. data/test/testcases/span/math/sskatex.html.19 +0 -1
  156. data/test/testcases/span/math/sskatex.options +0 -1
  157. data/test/testcases/span/math/sskatex.text +0 -1
  158. data/test/testcases/span/text_substitutions/entities_as_char.html.19 +0 -1
  159. data/test/testcases_gfm/atx_header.html +0 -3
  160. data/test/testcases_gfm/atx_header.text +0 -3
  161. data/test/testcases_gfm/backticks_disable_highlighting.html +0 -2
  162. data/test/testcases_gfm/backticks_disable_highlighting.options +0 -1
  163. data/test/testcases_gfm/backticks_disable_highlighting.text +0 -3
  164. data/test/testcases_gfm/backticks_syntax.html +0 -20
  165. data/test/testcases_gfm/backticks_syntax.text +0 -19
  166. data/test/testcases_gfm/codeblock_fenced.html +0 -20
  167. data/test/testcases_gfm/codeblock_fenced.options +0 -1
  168. data/test/testcases_gfm/codeblock_fenced.text +0 -21
  169. data/test/testcases_gfm/hard_line_breaks.html +0 -3
  170. data/test/testcases_gfm/hard_line_breaks.text +0 -3
  171. data/test/testcases_gfm/hard_line_breaks_off.html +0 -2
  172. data/test/testcases_gfm/hard_line_breaks_off.options +0 -1
  173. data/test/testcases_gfm/hard_line_breaks_off.text +0 -2
  174. data/test/testcases_gfm/header_ids.html +0 -27
  175. data/test/testcases_gfm/header_ids.html.19 +0 -27
  176. data/test/testcases_gfm/header_ids.options +0 -1
  177. data/test/testcases_gfm/header_ids.text +0 -27
  178. data/test/testcases_gfm/header_ids_with_prefix.html +0 -3
  179. data/test/testcases_gfm/header_ids_with_prefix.options +0 -2
  180. data/test/testcases_gfm/header_ids_with_prefix.text +0 -3
  181. data/test/testcases_gfm/no_typographic.html +0 -3
  182. data/test/testcases_gfm/no_typographic.html.19 +0 -3
  183. data/test/testcases_gfm/no_typographic.options +0 -1
  184. data/test/testcases_gfm/no_typographic.text +0 -3
  185. data/test/testcases_gfm/paragraph_end-disabled.html +0 -31
  186. data/test/testcases_gfm/paragraph_end-disabled.options +0 -1
  187. data/test/testcases_gfm/paragraph_end-disabled.text +0 -27
  188. data/test/testcases_gfm/paragraph_end.html +0 -38
  189. data/test/testcases_gfm/paragraph_end.text +0 -27
  190. data/test/testcases_gfm/strikethrough.html +0 -27
  191. data/test/testcases_gfm/strikethrough.html.19 +0 -27
  192. data/test/testcases_gfm/strikethrough.text +0 -27
  193. data/test/testcases_gfm/task_list.html +0 -40
  194. data/test/testcases_gfm/task_list.text +0 -26
  195. data/test/testcases_gfm/two_para_hard_line_breaks.html +0 -4
  196. data/test/testcases_gfm/two_para_hard_line_breaks.text +0 -4
@@ -1 +0,0 @@
1
- :enable_coderay: false
@@ -1,21 +0,0 @@
1
- normal
2
-
3
- ```ruby
4
- require 'kramdown'
5
-
6
- Kramdown::Document.new(text).to_html
7
- ```
8
-
9
- indent with tab
10
-
11
- ```ruby
12
- require 'kramdown'
13
-
14
- Kramdown::Document.new(text).to_html
15
- ```
16
-
17
- indent with 2 spaces
18
-
19
- ```js
20
- console.log("hello");
21
- ```
@@ -1,3 +0,0 @@
1
- <p>one<br />
2
- <em>two</em><br />
3
- three</p>
@@ -1,3 +0,0 @@
1
- one
2
- _two_
3
- three
@@ -1,2 +0,0 @@
1
- <p>This is just a normal paragraph.<br />
2
- Containing a manual line break above.</p>
@@ -1 +0,0 @@
1
- :hard_wrap: false
@@ -1,2 +0,0 @@
1
- This is just a normal paragraph.
2
- Containing a manual line break above.
@@ -1,27 +0,0 @@
1
- <h3 id="myid">test</h3>
2
-
3
- <h3 id="variable_name">variable_name</h3>
4
-
5
- <h3 id="abc-def-">abc def öúß</h3>
6
-
7
- <h3 id="192-abc-192">192 abc 192</h3>
8
-
9
- <h3>;.;;</h3>
10
-
11
- <h3 id="variable_name-1">variable_name</h3>
12
-
13
- <h3 id="variable_name-2">variable_name</h3>
14
-
15
- <h3 id="-1">;;</h3>
16
-
17
- <h3 id="before--after-tab">before after tab</h3>
18
-
19
- <h3 id="with-code">with <code>code</code></h3>
20
-
21
- <h3 id="with-space">with &nbsp;&auml;&nbsp;space</h3>
22
-
23
- <h3 id="with-smart-quotes">With &#8220;smart&#8221; quotes</h3>
24
-
25
- <h3 id="with--typographic--symbols">with &#8212; &#171;&#160;typographic&#160;&#187; &#8230; symbols</h3>
26
-
27
- <h3 id="with-m5">with <script type="math/tex">m=5</script></h3>
@@ -1,27 +0,0 @@
1
- <h3 id="myid">test</h3>
2
-
3
- <h3 id="variable_name">variable_name</h3>
4
-
5
- <h3 id="abc-def-öúß">abc def öúß</h3>
6
-
7
- <h3 id="192-abc-192">192 abc 192</h3>
8
-
9
- <h3>;.;;</h3>
10
-
11
- <h3 id="variable_name-1">variable_name</h3>
12
-
13
- <h3 id="variable_name-2">variable_name</h3>
14
-
15
- <h3 id="-1">;;</h3>
16
-
17
- <h3 id="before--after-tab">before after tab</h3>
18
-
19
- <h3 id="with-code">with <code>code</code></h3>
20
-
21
- <h3 id="with-äspace">with  ä space</h3>
22
-
23
- <h3 id="with-smart-quotes">With “smart” quotes</h3>
24
-
25
- <h3 id="with--typographic--symbols">with — « typographic » … symbols</h3>
26
-
27
- <h3 id="with-m5">with <script type="math/tex">m=5</script></h3>
@@ -1 +0,0 @@
1
- :auto_ids: true
@@ -1,27 +0,0 @@
1
- ### test {#myid}
2
-
3
- ### variable_name
4
-
5
- ### abc def öúß
6
-
7
- ### 192 abc 192
8
-
9
- ### ;.;;
10
-
11
- ### variable_name
12
-
13
- ### variable_name
14
-
15
- ### ;;
16
-
17
- ### before after tab
18
-
19
- ### with `code`
20
-
21
- ### with &nbsp;&auml;&nbsp;space
22
-
23
- ### With "smart" quotes
24
-
25
- ### with --- << typographic >> ... symbols
26
-
27
- ### with $$m=5$$
@@ -1,3 +0,0 @@
1
- <h1 id="hallo-header-1">Header 1</h1>
2
-
3
- <h1 id="hallo-123">123</h1>
@@ -1,2 +0,0 @@
1
- :auto_ids: true
2
- :auto_id_prefix: hallo-
@@ -1,3 +0,0 @@
1
- # Header 1
2
-
3
- # 123
@@ -1,3 +0,0 @@
1
- <h3 id="header-with---ndash">Header with --ndash</h3>
2
-
3
- <h3 id="with------typographic---symbols">with --- &lt;&lt; typographic &gt;&gt; ... symbols</h3>
@@ -1,3 +0,0 @@
1
- <h3 id="header-with---ndash">Header with --ndash</h3>
2
-
3
- <h3 id="with------typographic---symbols">with --- &lt;&lt; typographic &gt;&gt; ... symbols</h3>
@@ -1 +0,0 @@
1
- :gfm_quirks: [no_auto_typographic]
@@ -1,3 +0,0 @@
1
- ### Header with --ndash
2
-
3
- ### with --- << typographic >> ... symbols
@@ -1,31 +0,0 @@
1
- <p>A<br />
2
- - b</p>
3
-
4
- <p>This is a list<br />
5
- - or is it</p>
6
-
7
- <p>blockquote<br />
8
- &gt; text</p>
9
-
10
- <p>header<br />
11
- # text</p>
12
-
13
- <p>codeblock fenced<br />
14
- <code>
15
- puts hello world
16
- </code></p>
17
-
18
- <ul>
19
- <li>
20
- <p>level 1<br />
21
- some text</p>
22
-
23
- <p>begin level 2<br />
24
- * level 2<br />
25
- * level 2</p>
26
- </li>
27
- </ul>
28
-
29
- <h1 id="h1">h1</h1>
30
- <p>## h2<br />
31
- ### h3</p>
@@ -1 +0,0 @@
1
- :gfm_quirks: []
@@ -1,27 +0,0 @@
1
- A
2
- - b
3
-
4
- This is a list
5
- - or is it
6
-
7
- blockquote
8
- > text
9
-
10
- header
11
- # text
12
-
13
- codeblock fenced
14
- ```
15
- puts hello world
16
- ```
17
-
18
- * level 1
19
- some text
20
-
21
- begin level 2
22
- * level 2
23
- * level 2
24
-
25
- # h1
26
- ## h2
27
- ### h3
@@ -1,38 +0,0 @@
1
- <p>A</p>
2
- <ul>
3
- <li>b</li>
4
- </ul>
5
-
6
- <p>This is a list</p>
7
- <ul>
8
- <li>or is it</li>
9
- </ul>
10
-
11
- <p>blockquote</p>
12
- <blockquote>
13
- <p>text</p>
14
- </blockquote>
15
-
16
- <p>header</p>
17
- <h1>text</h1>
18
-
19
- <p>codeblock fenced</p>
20
- <pre><code>puts hello world
21
- </code></pre>
22
-
23
- <ul>
24
- <li>
25
- <p>level 1<br />
26
- some text</p>
27
-
28
- <p>begin level 2</p>
29
- <ul>
30
- <li>level 2</li>
31
- <li>level 2</li>
32
- </ul>
33
- </li>
34
- </ul>
35
-
36
- <h1>h1</h1>
37
- <h2>h2</h2>
38
- <h3>h3</h3>
@@ -1,27 +0,0 @@
1
- A
2
- - b
3
-
4
- This is a list
5
- - or is it
6
-
7
- blockquote
8
- > text
9
-
10
- header
11
- # text
12
-
13
- codeblock fenced
14
- ```
15
- puts hello world
16
- ```
17
-
18
- * level 1
19
- some text
20
-
21
- begin level 2
22
- * level 2
23
- * level 2
24
-
25
- # h1
26
- ## h2
27
- ### h3
@@ -1,27 +0,0 @@
1
- <p><del>This is a test</del></p>
2
-
3
- <p>~<del>This is another test</del>~</p>
4
-
5
- <p><del>This is yet another test</del>~</p>
6
-
7
- <p>~~ This is a test of it NOT working ~~</p>
8
-
9
- <p>~~<br />
10
- This<br />
11
- is<br />
12
- a<br />
13
- <strong>multiline</strong><br />
14
- test<br />
15
- ~~</p>
16
-
17
- <p>This is an <del><em>inline</em> <strong>strikethrough</strong></del> test</p>
18
-
19
- <p>This is an ~~escaped~~ strikethrough.</p>
20
-
21
- <p>This is a <del>strikethrough with a ~ in the middle</del></p>
22
-
23
- <p>I <del>don&#8217;t even</del>~ have an extra tilde.</p>
24
-
25
- <p>This should ~~not be struck.</p>
26
-
27
- <p>This <del>is a complex <em>strike</em> through *test ~~with nesting</del> involved* here~~.</p>
@@ -1,27 +0,0 @@
1
- <p><del>This is a test</del></p>
2
-
3
- <p>~<del>This is another test</del>~</p>
4
-
5
- <p><del>This is yet another test</del>~</p>
6
-
7
- <p>~~ This is a test of it NOT working ~~</p>
8
-
9
- <p>~~<br />
10
- This<br />
11
- is<br />
12
- a<br />
13
- <strong>multiline</strong><br />
14
- test<br />
15
- ~~</p>
16
-
17
- <p>This is an <del><em>inline</em> <strong>strikethrough</strong></del> test</p>
18
-
19
- <p>This is an ~~escaped~~ strikethrough.</p>
20
-
21
- <p>This is a <del>strikethrough with a ~ in the middle</del></p>
22
-
23
- <p>I <del>don’t even</del>~ have an extra tilde.</p>
24
-
25
- <p>This should ~~not be struck.</p>
26
-
27
- <p>This <del>is a complex <em>strike</em> through *test ~~with nesting</del> involved* here~~.</p>
@@ -1,27 +0,0 @@
1
- ~~This is a test~~
2
-
3
- ~~~This is another test~~~
4
-
5
- ~~This is yet another test~~~
6
-
7
- ~~ This is a test of it NOT working ~~
8
-
9
- ~~
10
- This
11
- is
12
- a
13
- **multiline**
14
- test
15
- ~~
16
-
17
- This is an ~~_inline_ **strikethrough**~~ test
18
-
19
- This is an \~~escaped~~ strikethrough.
20
-
21
- This is a ~~strikethrough with a ~ in the middle~~
22
-
23
- I ~~don't even~~~ have an extra tilde.
24
-
25
- This should ~~not be struck.
26
-
27
- This ~~is a complex *strike* through *test ~~with nesting~~ involved* here~~.
@@ -1,40 +0,0 @@
1
- <p>unordered task list</p>
2
-
3
- <ul class="task-list">
4
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />first ul task item</li>
5
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />second ul task item</li>
6
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />third ul task item</li>
7
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />fourth ul task item [ ] next</li>
8
- </ul>
9
-
10
- <p>unordered list</p>
11
-
12
- <ul>
13
- <li>
14
- <blockquote>
15
- <p>first ul item</p>
16
- </blockquote>
17
- </li>
18
- <li></li>
19
- <li>
20
- <pre><code>test
21
- </code></pre>
22
- </li>
23
- <li>second ul item</li>
24
- </ul>
25
-
26
- <p>ordered list</p>
27
-
28
- <ol>
29
- <li>first ol item</li>
30
- <li>second ol item</li>
31
- </ol>
32
-
33
- <p>ordered task list</p>
34
-
35
- <ol class="task-list">
36
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />first ol task item</li>
37
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />second ol task item</li>
38
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />third ol task item</li>
39
- <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />fourth ol task item</li>
40
- </ol>
@@ -1,26 +0,0 @@
1
- unordered task list
2
-
3
- - [ ] first ul task item
4
- - [x] second ul task item
5
- - [X] third ul task item
6
- - [ ] fourth ul task item [ ] next
7
-
8
- unordered list
9
-
10
- - > first ul item
11
- -
12
- -
13
- test
14
- - second ul item
15
-
16
- ordered list
17
-
18
- 1. first ol item
19
- 2. second ol item
20
-
21
- ordered task list
22
-
23
- 1. [ ] first ol task item
24
- 2. [x] second ol task item
25
- 3. [X] third ol task item
26
- 4. [ ] fourth ol task item