gitdown 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (416) hide show
  1. data/AUTHORS +1 -0
  2. data/COPYING +24 -0
  3. data/GPL +674 -0
  4. data/README +43 -0
  5. data/Rakefile +370 -0
  6. data/VERSION +1 -0
  7. data/benchmark/benchmark.rb +34 -0
  8. data/benchmark/benchmark.sh +74 -0
  9. data/benchmark/generate_data.rb +119 -0
  10. data/benchmark/mdbasics.text +306 -0
  11. data/benchmark/mdsyntax.text +888 -0
  12. data/benchmark/testing.sh +9 -0
  13. data/benchmark/timing.sh +10 -0
  14. data/bin/kramdown +78 -0
  15. data/data/kramdown/document.html +18 -0
  16. data/data/kramdown/document.latex +43 -0
  17. data/doc/default.scss.css +530 -0
  18. data/doc/default.template +80 -0
  19. data/doc/documentation.page +71 -0
  20. data/doc/index.page +98 -0
  21. data/doc/installation.page +88 -0
  22. data/doc/links.markdown +6 -0
  23. data/doc/news.feed +10 -0
  24. data/doc/news.page +28 -0
  25. data/doc/quickref.page +585 -0
  26. data/doc/syntax.page +1644 -0
  27. data/doc/tests.page +52 -0
  28. data/doc/virtual +2 -0
  29. data/lib/kramdown.rb +23 -0
  30. data/lib/kramdown/compatibility.rb +35 -0
  31. data/lib/kramdown/converter.rb +41 -0
  32. data/lib/kramdown/converter/base.rb +169 -0
  33. data/lib/kramdown/converter/html.rb +410 -0
  34. data/lib/kramdown/converter/kramdown.rb +422 -0
  35. data/lib/kramdown/converter/latex.rb +607 -0
  36. data/lib/kramdown/converter/toc.rb +82 -0
  37. data/lib/kramdown/document.rb +117 -0
  38. data/lib/kramdown/element.rb +524 -0
  39. data/lib/kramdown/error.rb +30 -0
  40. data/lib/kramdown/options.rb +373 -0
  41. data/lib/kramdown/parser.rb +40 -0
  42. data/lib/kramdown/parser/base.rb +136 -0
  43. data/lib/kramdown/parser/github_markdown.rb +44 -0
  44. data/lib/kramdown/parser/github_markdown/github_codeblock.rb +44 -0
  45. data/lib/kramdown/parser/html.rb +570 -0
  46. data/lib/kramdown/parser/kramdown.rb +338 -0
  47. data/lib/kramdown/parser/kramdown/abbreviation.rb +71 -0
  48. data/lib/kramdown/parser/kramdown/autolink.rb +53 -0
  49. data/lib/kramdown/parser/kramdown/blank_line.rb +43 -0
  50. data/lib/kramdown/parser/kramdown/block_boundary.rb +46 -0
  51. data/lib/kramdown/parser/kramdown/blockquote.rb +51 -0
  52. data/lib/kramdown/parser/kramdown/codeblock.rb +63 -0
  53. data/lib/kramdown/parser/kramdown/codespan.rb +56 -0
  54. data/lib/kramdown/parser/kramdown/emphasis.rb +70 -0
  55. data/lib/kramdown/parser/kramdown/eob.rb +39 -0
  56. data/lib/kramdown/parser/kramdown/escaped_chars.rb +38 -0
  57. data/lib/kramdown/parser/kramdown/extensions.rb +204 -0
  58. data/lib/kramdown/parser/kramdown/footnote.rb +74 -0
  59. data/lib/kramdown/parser/kramdown/header.rb +68 -0
  60. data/lib/kramdown/parser/kramdown/horizontal_rule.rb +39 -0
  61. data/lib/kramdown/parser/kramdown/html.rb +169 -0
  62. data/lib/kramdown/parser/kramdown/html_entity.rb +44 -0
  63. data/lib/kramdown/parser/kramdown/line_break.rb +38 -0
  64. data/lib/kramdown/parser/kramdown/link.rb +148 -0
  65. data/lib/kramdown/parser/kramdown/list.rb +240 -0
  66. data/lib/kramdown/parser/kramdown/math.rb +64 -0
  67. data/lib/kramdown/parser/kramdown/paragraph.rb +63 -0
  68. data/lib/kramdown/parser/kramdown/smart_quotes.rb +214 -0
  69. data/lib/kramdown/parser/kramdown/table.rb +178 -0
  70. data/lib/kramdown/parser/kramdown/typographic_symbol.rb +52 -0
  71. data/lib/kramdown/parser/markdown.rb +69 -0
  72. data/lib/kramdown/utils.rb +37 -0
  73. data/lib/kramdown/utils/entities.rb +348 -0
  74. data/lib/kramdown/utils/html.rb +85 -0
  75. data/lib/kramdown/utils/ordered_hash.rb +100 -0
  76. data/lib/kramdown/version.rb +28 -0
  77. data/setup.rb +1585 -0
  78. data/test/run_tests.rb +59 -0
  79. data/test/test_files.rb +197 -0
  80. data/test/testcases/block/01_blank_line/spaces.html +1 -0
  81. data/test/testcases/block/01_blank_line/spaces.text +3 -0
  82. data/test/testcases/block/01_blank_line/tabs.html +1 -0
  83. data/test/testcases/block/01_blank_line/tabs.text +6 -0
  84. data/test/testcases/block/02_eob/beginning.html +1 -0
  85. data/test/testcases/block/02_eob/beginning.text +3 -0
  86. data/test/testcases/block/02_eob/end.html +1 -0
  87. data/test/testcases/block/02_eob/end.text +3 -0
  88. data/test/testcases/block/02_eob/middle.html +1 -0
  89. data/test/testcases/block/02_eob/middle.text +5 -0
  90. data/test/testcases/block/03_paragraph/indented.html +18 -0
  91. data/test/testcases/block/03_paragraph/indented.text +19 -0
  92. data/test/testcases/block/03_paragraph/no_newline_at_end.html +5 -0
  93. data/test/testcases/block/03_paragraph/no_newline_at_end.text +5 -0
  94. data/test/testcases/block/03_paragraph/one_para.html +1 -0
  95. data/test/testcases/block/03_paragraph/one_para.text +1 -0
  96. data/test/testcases/block/03_paragraph/two_para.html +4 -0
  97. data/test/testcases/block/03_paragraph/two_para.text +4 -0
  98. data/test/testcases/block/04_header/atx_header.html +37 -0
  99. data/test/testcases/block/04_header/atx_header.text +34 -0
  100. data/test/testcases/block/04_header/atx_header_no_newline_at_end.html +1 -0
  101. data/test/testcases/block/04_header/atx_header_no_newline_at_end.text +1 -0
  102. data/test/testcases/block/04_header/setext_header.html +30 -0
  103. data/test/testcases/block/04_header/setext_header.html.19 +30 -0
  104. data/test/testcases/block/04_header/setext_header.text +36 -0
  105. data/test/testcases/block/04_header/setext_header_no_newline_at_end.html +1 -0
  106. data/test/testcases/block/04_header/setext_header_no_newline_at_end.text +2 -0
  107. data/test/testcases/block/04_header/with_auto_id_prefix.html +3 -0
  108. data/test/testcases/block/04_header/with_auto_id_prefix.options +2 -0
  109. data/test/testcases/block/04_header/with_auto_id_prefix.text +3 -0
  110. data/test/testcases/block/04_header/with_auto_ids.html +17 -0
  111. data/test/testcases/block/04_header/with_auto_ids.options +1 -0
  112. data/test/testcases/block/04_header/with_auto_ids.text +19 -0
  113. data/test/testcases/block/05_blockquote/indented.html +25 -0
  114. data/test/testcases/block/05_blockquote/indented.text +14 -0
  115. data/test/testcases/block/05_blockquote/lazy.html +34 -0
  116. data/test/testcases/block/05_blockquote/lazy.text +20 -0
  117. data/test/testcases/block/05_blockquote/nested.html +10 -0
  118. data/test/testcases/block/05_blockquote/nested.text +6 -0
  119. data/test/testcases/block/05_blockquote/no_newline_at_end.html +4 -0
  120. data/test/testcases/block/05_blockquote/no_newline_at_end.text +2 -0
  121. data/test/testcases/block/05_blockquote/very_long_line.html +3 -0
  122. data/test/testcases/block/05_blockquote/very_long_line.text +1 -0
  123. data/test/testcases/block/05_blockquote/with_code_blocks.html +15 -0
  124. data/test/testcases/block/05_blockquote/with_code_blocks.text +11 -0
  125. data/test/testcases/block/06_codeblock/error.html +4 -0
  126. data/test/testcases/block/06_codeblock/error.text +4 -0
  127. data/test/testcases/block/06_codeblock/lazy.html +4 -0
  128. data/test/testcases/block/06_codeblock/lazy.text +5 -0
  129. data/test/testcases/block/06_codeblock/no_newline_at_end.html +2 -0
  130. data/test/testcases/block/06_codeblock/no_newline_at_end.text +1 -0
  131. data/test/testcases/block/06_codeblock/no_newline_at_end_1.html +2 -0
  132. data/test/testcases/block/06_codeblock/no_newline_at_end_1.text +2 -0
  133. data/test/testcases/block/06_codeblock/normal.html +13 -0
  134. data/test/testcases/block/06_codeblock/normal.text +10 -0
  135. data/test/testcases/block/06_codeblock/tilde_syntax.html +7 -0
  136. data/test/testcases/block/06_codeblock/tilde_syntax.text +9 -0
  137. data/test/testcases/block/06_codeblock/whitespace.html +3 -0
  138. data/test/testcases/block/06_codeblock/whitespace.text +3 -0
  139. data/test/testcases/block/06_codeblock/with_blank_line.html +13 -0
  140. data/test/testcases/block/06_codeblock/with_blank_line.text +12 -0
  141. data/test/testcases/block/06_codeblock/with_eob_marker.html +6 -0
  142. data/test/testcases/block/06_codeblock/with_eob_marker.text +5 -0
  143. data/test/testcases/block/06_codeblock/with_ial.html +6 -0
  144. data/test/testcases/block/06_codeblock/with_ial.text +5 -0
  145. data/test/testcases/block/07_horizontal_rule/error.html +7 -0
  146. data/test/testcases/block/07_horizontal_rule/error.html.19 +7 -0
  147. data/test/testcases/block/07_horizontal_rule/error.text +7 -0
  148. data/test/testcases/block/07_horizontal_rule/normal.html +17 -0
  149. data/test/testcases/block/07_horizontal_rule/normal.text +17 -0
  150. data/test/testcases/block/07_horizontal_rule/sepspaces.html +3 -0
  151. data/test/testcases/block/07_horizontal_rule/sepspaces.text +3 -0
  152. data/test/testcases/block/07_horizontal_rule/septabs.html +3 -0
  153. data/test/testcases/block/07_horizontal_rule/septabs.text +3 -0
  154. data/test/testcases/block/08_list/escaping.html +17 -0
  155. data/test/testcases/block/08_list/escaping.text +17 -0
  156. data/test/testcases/block/08_list/item_ial.html +10 -0
  157. data/test/testcases/block/08_list/item_ial.text +8 -0
  158. data/test/testcases/block/08_list/lazy.html +39 -0
  159. data/test/testcases/block/08_list/lazy.text +29 -0
  160. data/test/testcases/block/08_list/list_and_hr.html +9 -0
  161. data/test/testcases/block/08_list/list_and_hr.text +5 -0
  162. data/test/testcases/block/08_list/list_and_others.html +40 -0
  163. data/test/testcases/block/08_list/list_and_others.text +26 -0
  164. data/test/testcases/block/08_list/mixed.html +117 -0
  165. data/test/testcases/block/08_list/mixed.text +66 -0
  166. data/test/testcases/block/08_list/nested.html +17 -0
  167. data/test/testcases/block/08_list/nested.text +7 -0
  168. data/test/testcases/block/08_list/other_first_element.html +39 -0
  169. data/test/testcases/block/08_list/other_first_element.text +18 -0
  170. data/test/testcases/block/08_list/simple_ol.html +19 -0
  171. data/test/testcases/block/08_list/simple_ol.text +13 -0
  172. data/test/testcases/block/08_list/simple_ul.html +48 -0
  173. data/test/testcases/block/08_list/simple_ul.text +36 -0
  174. data/test/testcases/block/08_list/single_item.html +3 -0
  175. data/test/testcases/block/08_list/single_item.text +1 -0
  176. data/test/testcases/block/08_list/special_cases.html +55 -0
  177. data/test/testcases/block/08_list/special_cases.text +35 -0
  178. data/test/testcases/block/09_html/comment.html +18 -0
  179. data/test/testcases/block/09_html/comment.text +15 -0
  180. data/test/testcases/block/09_html/content_model/deflists.html +6 -0
  181. data/test/testcases/block/09_html/content_model/deflists.options +1 -0
  182. data/test/testcases/block/09_html/content_model/deflists.text +6 -0
  183. data/test/testcases/block/09_html/content_model/tables.html +14 -0
  184. data/test/testcases/block/09_html/content_model/tables.options +1 -0
  185. data/test/testcases/block/09_html/content_model/tables.text +14 -0
  186. data/test/testcases/block/09_html/html_and_codeblocks.html +15 -0
  187. data/test/testcases/block/09_html/html_and_codeblocks.options +1 -0
  188. data/test/testcases/block/09_html/html_and_codeblocks.text +13 -0
  189. data/test/testcases/block/09_html/html_and_headers.html +5 -0
  190. data/test/testcases/block/09_html/html_and_headers.text +6 -0
  191. data/test/testcases/block/09_html/html_to_native/code.html +10 -0
  192. data/test/testcases/block/09_html/html_to_native/code.text +9 -0
  193. data/test/testcases/block/09_html/html_to_native/comment.html +7 -0
  194. data/test/testcases/block/09_html/html_to_native/comment.text +8 -0
  195. data/test/testcases/block/09_html/html_to_native/emphasis.html +6 -0
  196. data/test/testcases/block/09_html/html_to_native/emphasis.text +6 -0
  197. data/test/testcases/block/09_html/html_to_native/entity.html +1 -0
  198. data/test/testcases/block/09_html/html_to_native/entity.text +1 -0
  199. data/test/testcases/block/09_html/html_to_native/header.html +6 -0
  200. data/test/testcases/block/09_html/html_to_native/header.options +2 -0
  201. data/test/testcases/block/09_html/html_to_native/header.text +6 -0
  202. data/test/testcases/block/09_html/html_to_native/list_dl.html +8 -0
  203. data/test/testcases/block/09_html/html_to_native/list_dl.text +8 -0
  204. data/test/testcases/block/09_html/html_to_native/list_ol.html +15 -0
  205. data/test/testcases/block/09_html/html_to_native/list_ol.text +17 -0
  206. data/test/testcases/block/09_html/html_to_native/list_ul.html +19 -0
  207. data/test/testcases/block/09_html/html_to_native/list_ul.text +22 -0
  208. data/test/testcases/block/09_html/html_to_native/options +1 -0
  209. data/test/testcases/block/09_html/html_to_native/paragraph.html +3 -0
  210. data/test/testcases/block/09_html/html_to_native/paragraph.text +4 -0
  211. data/test/testcases/block/09_html/html_to_native/table_normal.html +12 -0
  212. data/test/testcases/block/09_html/html_to_native/table_normal.text +12 -0
  213. data/test/testcases/block/09_html/html_to_native/table_simple.html +48 -0
  214. data/test/testcases/block/09_html/html_to_native/table_simple.text +56 -0
  215. data/test/testcases/block/09_html/html_to_native/typography.html +1 -0
  216. data/test/testcases/block/09_html/html_to_native/typography.html.19 +1 -0
  217. data/test/testcases/block/09_html/html_to_native/typography.text +1 -0
  218. data/test/testcases/block/09_html/invalid_html_1.html +5 -0
  219. data/test/testcases/block/09_html/invalid_html_1.text +5 -0
  220. data/test/testcases/block/09_html/invalid_html_2.html +5 -0
  221. data/test/testcases/block/09_html/invalid_html_2.text +5 -0
  222. data/test/testcases/block/09_html/markdown_attr.html +38 -0
  223. data/test/testcases/block/09_html/markdown_attr.text +38 -0
  224. data/test/testcases/block/09_html/not_parsed.html +24 -0
  225. data/test/testcases/block/09_html/not_parsed.text +24 -0
  226. data/test/testcases/block/09_html/parse_as_raw.html +35 -0
  227. data/test/testcases/block/09_html/parse_as_raw.htmlinput +34 -0
  228. data/test/testcases/block/09_html/parse_as_raw.options +1 -0
  229. data/test/testcases/block/09_html/parse_as_raw.text +33 -0
  230. data/test/testcases/block/09_html/parse_as_span.html +12 -0
  231. data/test/testcases/block/09_html/parse_as_span.htmlinput +12 -0
  232. data/test/testcases/block/09_html/parse_as_span.options +1 -0
  233. data/test/testcases/block/09_html/parse_as_span.text +9 -0
  234. data/test/testcases/block/09_html/parse_block_html.html +21 -0
  235. data/test/testcases/block/09_html/parse_block_html.options +1 -0
  236. data/test/testcases/block/09_html/parse_block_html.text +17 -0
  237. data/test/testcases/block/09_html/processing_instruction.html +13 -0
  238. data/test/testcases/block/09_html/processing_instruction.text +12 -0
  239. data/test/testcases/block/09_html/simple.html +64 -0
  240. data/test/testcases/block/09_html/simple.html.19 +64 -0
  241. data/test/testcases/block/09_html/simple.options +1 -0
  242. data/test/testcases/block/09_html/simple.text +59 -0
  243. data/test/testcases/block/10_ald/simple.html +2 -0
  244. data/test/testcases/block/10_ald/simple.text +8 -0
  245. data/test/testcases/block/11_ial/auto_id_and_ial.html +1 -0
  246. data/test/testcases/block/11_ial/auto_id_and_ial.options +1 -0
  247. data/test/testcases/block/11_ial/auto_id_and_ial.text +2 -0
  248. data/test/testcases/block/11_ial/nested.html +11 -0
  249. data/test/testcases/block/11_ial/nested.text +15 -0
  250. data/test/testcases/block/11_ial/simple.html +25 -0
  251. data/test/testcases/block/11_ial/simple.text +34 -0
  252. data/test/testcases/block/12_extension/comment.html +8 -0
  253. data/test/testcases/block/12_extension/comment.text +12 -0
  254. data/test/testcases/block/12_extension/ignored.html +8 -0
  255. data/test/testcases/block/12_extension/ignored.text +8 -0
  256. data/test/testcases/block/12_extension/nomarkdown.html +10 -0
  257. data/test/testcases/block/12_extension/nomarkdown.kramdown +20 -0
  258. data/test/testcases/block/12_extension/nomarkdown.latex +13 -0
  259. data/test/testcases/block/12_extension/nomarkdown.text +21 -0
  260. data/test/testcases/block/12_extension/options.html +21 -0
  261. data/test/testcases/block/12_extension/options.text +21 -0
  262. data/test/testcases/block/12_extension/options2.html +10 -0
  263. data/test/testcases/block/12_extension/options2.text +5 -0
  264. data/test/testcases/block/12_extension/options3.html +7 -0
  265. data/test/testcases/block/12_extension/options3.text +7 -0
  266. data/test/testcases/block/13_definition_list/definition_at_beginning.html +1 -0
  267. data/test/testcases/block/13_definition_list/definition_at_beginning.text +1 -0
  268. data/test/testcases/block/13_definition_list/item_ial.html +12 -0
  269. data/test/testcases/block/13_definition_list/item_ial.text +8 -0
  270. data/test/testcases/block/13_definition_list/multiple_terms.html +13 -0
  271. data/test/testcases/block/13_definition_list/multiple_terms.text +10 -0
  272. data/test/testcases/block/13_definition_list/no_def_list.html +2 -0
  273. data/test/testcases/block/13_definition_list/no_def_list.text +2 -0
  274. data/test/testcases/block/13_definition_list/para_wrapping.html +10 -0
  275. data/test/testcases/block/13_definition_list/para_wrapping.text +6 -0
  276. data/test/testcases/block/13_definition_list/separated_by_eob.html +8 -0
  277. data/test/testcases/block/13_definition_list/separated_by_eob.text +5 -0
  278. data/test/testcases/block/13_definition_list/simple.html +8 -0
  279. data/test/testcases/block/13_definition_list/simple.text +7 -0
  280. data/test/testcases/block/13_definition_list/styled_terms.html +4 -0
  281. data/test/testcases/block/13_definition_list/styled_terms.text +2 -0
  282. data/test/testcases/block/13_definition_list/too_much_space.html +3 -0
  283. data/test/testcases/block/13_definition_list/too_much_space.text +4 -0
  284. data/test/testcases/block/13_definition_list/with_blocks.html +38 -0
  285. data/test/testcases/block/13_definition_list/with_blocks.text +24 -0
  286. data/test/testcases/block/14_table/errors.html +8 -0
  287. data/test/testcases/block/14_table/errors.text +9 -0
  288. data/test/testcases/block/14_table/escaping.html +52 -0
  289. data/test/testcases/block/14_table/escaping.text +19 -0
  290. data/test/testcases/block/14_table/footer.html +65 -0
  291. data/test/testcases/block/14_table/footer.text +25 -0
  292. data/test/testcases/block/14_table/header.html +96 -0
  293. data/test/testcases/block/14_table/header.text +32 -0
  294. data/test/testcases/block/14_table/no_table.html +3 -0
  295. data/test/testcases/block/14_table/no_table.text +3 -0
  296. data/test/testcases/block/14_table/simple.html +177 -0
  297. data/test/testcases/block/14_table/simple.html.19 +177 -0
  298. data/test/testcases/block/14_table/simple.text +49 -0
  299. data/test/testcases/block/14_table/table_with_footnote.html +25 -0
  300. data/test/testcases/block/14_table/table_with_footnote.latex +11 -0
  301. data/test/testcases/block/14_table/table_with_footnote.text +6 -0
  302. data/test/testcases/block/15_math/normal.html +26 -0
  303. data/test/testcases/block/15_math/normal.text +28 -0
  304. data/test/testcases/block/16_toc/no_toc.html +33 -0
  305. data/test/testcases/block/16_toc/no_toc.options +1 -0
  306. data/test/testcases/block/16_toc/no_toc.text +16 -0
  307. data/test/testcases/block/16_toc/toc_levels.html +24 -0
  308. data/test/testcases/block/16_toc/toc_levels.options +1 -0
  309. data/test/testcases/block/16_toc/toc_levels.text +16 -0
  310. data/test/testcases/block/17_github_codeblock/backtick_syntax.html +7 -0
  311. data/test/testcases/block/17_github_codeblock/backtick_syntax.text +9 -0
  312. data/test/testcases/block/17_github_codeblock/error.html +4 -0
  313. data/test/testcases/block/17_github_codeblock/error.text +4 -0
  314. data/test/testcases/block/17_github_codeblock/no_newline_at_end.html +2 -0
  315. data/test/testcases/block/17_github_codeblock/no_newline_at_end.text +3 -0
  316. data/test/testcases/encoding.html +46 -0
  317. data/test/testcases/encoding.text +28 -0
  318. data/test/testcases/span/01_link/empty.html +5 -0
  319. data/test/testcases/span/01_link/empty.text +5 -0
  320. data/test/testcases/span/01_link/image_in_a.html +5 -0
  321. data/test/testcases/span/01_link/image_in_a.text +5 -0
  322. data/test/testcases/span/01_link/imagelinks.html +14 -0
  323. data/test/testcases/span/01_link/imagelinks.text +16 -0
  324. data/test/testcases/span/01_link/inline.html +46 -0
  325. data/test/testcases/span/01_link/inline.html.19 +46 -0
  326. data/test/testcases/span/01_link/inline.text +48 -0
  327. data/test/testcases/span/01_link/link_defs.html +9 -0
  328. data/test/testcases/span/01_link/link_defs.text +26 -0
  329. data/test/testcases/span/01_link/links_with_angle_brackets.html +3 -0
  330. data/test/testcases/span/01_link/links_with_angle_brackets.text +3 -0
  331. data/test/testcases/span/01_link/reference.html +36 -0
  332. data/test/testcases/span/01_link/reference.html.19 +36 -0
  333. data/test/testcases/span/01_link/reference.text +50 -0
  334. data/test/testcases/span/02_emphasis/empty.html +3 -0
  335. data/test/testcases/span/02_emphasis/empty.text +3 -0
  336. data/test/testcases/span/02_emphasis/errors.html +9 -0
  337. data/test/testcases/span/02_emphasis/errors.text +9 -0
  338. data/test/testcases/span/02_emphasis/nesting.html +38 -0
  339. data/test/testcases/span/02_emphasis/nesting.text +33 -0
  340. data/test/testcases/span/02_emphasis/normal.html +46 -0
  341. data/test/testcases/span/02_emphasis/normal.text +46 -0
  342. data/test/testcases/span/03_codespan/empty.html +5 -0
  343. data/test/testcases/span/03_codespan/empty.text +5 -0
  344. data/test/testcases/span/03_codespan/errors.html +1 -0
  345. data/test/testcases/span/03_codespan/errors.text +1 -0
  346. data/test/testcases/span/03_codespan/highlighting.html +1 -0
  347. data/test/testcases/span/03_codespan/highlighting.text +1 -0
  348. data/test/testcases/span/03_codespan/normal.html +16 -0
  349. data/test/testcases/span/03_codespan/normal.text +16 -0
  350. data/test/testcases/span/04_footnote/definitions.html +17 -0
  351. data/test/testcases/span/04_footnote/definitions.latex +17 -0
  352. data/test/testcases/span/04_footnote/definitions.text +24 -0
  353. data/test/testcases/span/04_footnote/footnote_nr.html +12 -0
  354. data/test/testcases/span/04_footnote/footnote_nr.latex +2 -0
  355. data/test/testcases/span/04_footnote/footnote_nr.options +1 -0
  356. data/test/testcases/span/04_footnote/footnote_nr.text +4 -0
  357. data/test/testcases/span/04_footnote/markers.html +46 -0
  358. data/test/testcases/span/04_footnote/markers.latex +23 -0
  359. data/test/testcases/span/04_footnote/markers.text +26 -0
  360. data/test/testcases/span/05_html/across_lines.html +1 -0
  361. data/test/testcases/span/05_html/across_lines.text +2 -0
  362. data/test/testcases/span/05_html/invalid.html +1 -0
  363. data/test/testcases/span/05_html/invalid.text +1 -0
  364. data/test/testcases/span/05_html/link_with_mailto.html +1 -0
  365. data/test/testcases/span/05_html/link_with_mailto.text +1 -0
  366. data/test/testcases/span/05_html/markdown_attr.html +6 -0
  367. data/test/testcases/span/05_html/markdown_attr.text +6 -0
  368. data/test/testcases/span/05_html/normal.html +34 -0
  369. data/test/testcases/span/05_html/normal.text +34 -0
  370. data/test/testcases/span/abbreviations/abbrev.html +8 -0
  371. data/test/testcases/span/abbreviations/abbrev.text +15 -0
  372. data/test/testcases/span/abbreviations/abbrev_defs.html +2 -0
  373. data/test/testcases/span/abbreviations/abbrev_defs.text +5 -0
  374. data/test/testcases/span/autolinks/url_links.html +12 -0
  375. data/test/testcases/span/autolinks/url_links.text +12 -0
  376. data/test/testcases/span/escaped_chars/normal.html +47 -0
  377. data/test/testcases/span/escaped_chars/normal.text +47 -0
  378. data/test/testcases/span/extension/comment.html +6 -0
  379. data/test/testcases/span/extension/comment.text +6 -0
  380. data/test/testcases/span/extension/ignored.html +1 -0
  381. data/test/testcases/span/extension/ignored.text +1 -0
  382. data/test/testcases/span/extension/nomarkdown.html +1 -0
  383. data/test/testcases/span/extension/nomarkdown.text +1 -0
  384. data/test/testcases/span/extension/options.html +1 -0
  385. data/test/testcases/span/extension/options.text +1 -0
  386. data/test/testcases/span/ial/simple.html +6 -0
  387. data/test/testcases/span/ial/simple.text +6 -0
  388. data/test/testcases/span/line_breaks/normal.html +11 -0
  389. data/test/testcases/span/line_breaks/normal.latex +12 -0
  390. data/test/testcases/span/line_breaks/normal.text +11 -0
  391. data/test/testcases/span/math/normal.html +5 -0
  392. data/test/testcases/span/math/normal.text +5 -0
  393. data/test/testcases/span/text_substitutions/entities.html +6 -0
  394. data/test/testcases/span/text_substitutions/entities.options +1 -0
  395. data/test/testcases/span/text_substitutions/entities.text +6 -0
  396. data/test/testcases/span/text_substitutions/entities_as_char.html +1 -0
  397. data/test/testcases/span/text_substitutions/entities_as_char.html.19 +1 -0
  398. data/test/testcases/span/text_substitutions/entities_as_char.options +1 -0
  399. data/test/testcases/span/text_substitutions/entities_as_char.text +1 -0
  400. data/test/testcases/span/text_substitutions/entities_as_input.html +1 -0
  401. data/test/testcases/span/text_substitutions/entities_as_input.options +1 -0
  402. data/test/testcases/span/text_substitutions/entities_as_input.text +1 -0
  403. data/test/testcases/span/text_substitutions/entities_numeric.html +1 -0
  404. data/test/testcases/span/text_substitutions/entities_numeric.options +1 -0
  405. data/test/testcases/span/text_substitutions/entities_numeric.text +1 -0
  406. data/test/testcases/span/text_substitutions/entities_symbolic.html +1 -0
  407. data/test/testcases/span/text_substitutions/entities_symbolic.options +1 -0
  408. data/test/testcases/span/text_substitutions/entities_symbolic.text +1 -0
  409. data/test/testcases/span/text_substitutions/greaterthan.html +1 -0
  410. data/test/testcases/span/text_substitutions/greaterthan.text +1 -0
  411. data/test/testcases/span/text_substitutions/lowerthan.html +1 -0
  412. data/test/testcases/span/text_substitutions/lowerthan.text +1 -0
  413. data/test/testcases/span/text_substitutions/typography.html +18 -0
  414. data/test/testcases/span/text_substitutions/typography.html.19 +18 -0
  415. data/test/testcases/span/text_substitutions/typography.text +18 -0
  416. metadata +817 -0
@@ -0,0 +1,30 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ #--
4
+ # Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
5
+ #
6
+ # This file is part of kramdown.
7
+ #
8
+ # kramdown is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # This program is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ #++
21
+ #
22
+
23
+ module Kramdown
24
+
25
+ # This error is raised when an error condition is encountered.
26
+ #
27
+ # *Note* that this error is only raised by the support framework for the parsers and converters.
28
+ class Error < RuntimeError; end
29
+
30
+ end
@@ -0,0 +1,373 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ #--
4
+ # Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
5
+ #
6
+ # This file is part of kramdown.
7
+ #
8
+ # kramdown is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # This program is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ #++
21
+ #
22
+
23
+ module Kramdown
24
+
25
+ # This module defines all options that are used by parsers and/or converters as well as providing
26
+ # methods to deal with the options.
27
+ module Options
28
+
29
+ # Helper class introducing a boolean type for specifying boolean values (+true+ and +false+) as
30
+ # option types.
31
+ class Boolean
32
+
33
+ # Return +true+ if +other+ is either +true+ or +false+
34
+ def self.===(other)
35
+ FalseClass === other || TrueClass === other
36
+ end
37
+
38
+ end
39
+
40
+ # ----------------------------
41
+ # :section: Option definitions
42
+ #
43
+ # This sections describes the methods that can be used on the Options module.
44
+ # ----------------------------
45
+
46
+ # Struct class for storing the definition of an option.
47
+ Definition = Struct.new(:name, :type, :default, :desc, :validator)
48
+
49
+ # Allowed option types.
50
+ ALLOWED_TYPES = [String, Integer, Float, Symbol, Boolean, Object]
51
+
52
+ @options = {}
53
+
54
+ # Define a new option called +name+ (a Symbol) with the given +type+ (String, Integer, Float,
55
+ # Symbol, Boolean, Object), default value +default+ and the description +desc+. If a block is
56
+ # specified, it should validate the value and either raise an error or return a valid value.
57
+ #
58
+ # The type 'Object' should only be used for complex types for which none of the other types
59
+ # suffices. A block needs to be specified when using type 'Object' and it has to cope with
60
+ # a value given as string and as the opaque type.
61
+ def self.define(name, type, default, desc, &block)
62
+ raise ArgumentError, "Option name #{name} is already used" if @options.has_key?(name)
63
+ raise ArgumentError, "Invalid option type #{type} specified" if !ALLOWED_TYPES.include?(type)
64
+ raise ArgumentError, "Invalid type for default value" if !(type === default) && !default.nil?
65
+ raise ArgumentError, "Missing validator block" if type == Object && block.nil?
66
+ @options[name] = Definition.new(name, type, default, desc, block)
67
+ end
68
+
69
+ # Return all option definitions.
70
+ def self.definitions
71
+ @options
72
+ end
73
+
74
+ # Return +true+ if an option called +name+ is defined.
75
+ def self.defined?(name)
76
+ @options.has_key?(name)
77
+ end
78
+
79
+ # Return a Hash with the default values for all options.
80
+ def self.defaults
81
+ temp = {}
82
+ @options.each {|n, o| temp[o.name] = o.default}
83
+ temp
84
+ end
85
+
86
+ # Merge the #defaults Hash with the *parsed* options from the given Hash, i.e. only valid option
87
+ # names are considered and their value is run through the #parse method.
88
+ def self.merge(hash)
89
+ temp = defaults
90
+ hash.each do |k,v|
91
+ next unless @options.has_key?(k)
92
+ temp[k] = parse(k, v)
93
+ end
94
+ temp
95
+ end
96
+
97
+ # Parse the given value +data+ as if it was a value for the option +name+ and return the parsed
98
+ # value with the correct type.
99
+ #
100
+ # If +data+ already has the correct type, it is just returned. Otherwise it is converted to a
101
+ # String and then to the correct type.
102
+ def self.parse(name, data)
103
+ raise ArgumentError, "No option named #{name} defined" if !@options.has_key?(name)
104
+ if !(@options[name].type === data)
105
+ data = data.to_s
106
+ data = if @options[name].type == String
107
+ data
108
+ elsif @options[name].type == Integer
109
+ Integer(data) rescue raise Kramdown::Error, "Invalid integer value for option '#{name}': '#{data}'"
110
+ elsif @options[name].type == Float
111
+ Float(data) rescue raise Kramdown::Error, "Invalid float value for option '#{name}': '#{data}'"
112
+ elsif @options[name].type == Symbol
113
+ (data.strip.empty? ? nil : data.to_sym)
114
+ elsif @options[name].type == Boolean
115
+ data.downcase.strip != 'false' && !data.empty?
116
+ end
117
+ end
118
+ data = @options[name].validator[data] if @options[name].validator
119
+ data
120
+ end
121
+
122
+ # ----------------------------
123
+ # :section: Option Validators
124
+ #
125
+ # This sections contains all pre-defined option validators.
126
+ # ----------------------------
127
+
128
+ # Ensures that the option value +val+ for the option called +name+ is a valid array. The
129
+ # parameter +val+ can be
130
+ #
131
+ # - a comma separated string which is split into an array of values
132
+ # - or an array.
133
+ #
134
+ # Additionally, the array is checked for the correct size.
135
+ def self.simple_array_validator(val, name, size)
136
+ if String === val
137
+ val = val.split(/,/)
138
+ elsif !(Array === val)
139
+ raise Kramdown::Error, "Invalid type #{val.class} for option #{name}"
140
+ end
141
+ if val.size != size
142
+ raise Kramdown::Error, "Option #{name} needs exactly #{size} values"
143
+ end
144
+ val
145
+ end
146
+
147
+ # ----------------------------
148
+ # :section: Option Definitions
149
+ #
150
+ # This sections contains all option definitions that are used by the included
151
+ # parsers/converters.
152
+ # ----------------------------
153
+
154
+ define(:template, String, '', <<EOF)
155
+ The name of an ERB template file that should be used to wrap the output
156
+
157
+ This is used to wrap the output in an environment so that the output can
158
+ be used as a stand-alone document. For example, an HTML template would
159
+ provide the needed header and body tags so that the whole output is a
160
+ valid HTML file. If no template is specified, the output will be just
161
+ the converted text.
162
+
163
+ When resolving the template file, the given template name is used first.
164
+ If such a file is not found, the converter extension is appended. If the
165
+ file still cannot be found, the templates name is interpreted as a
166
+ template name that is provided by kramdown (without the converter
167
+ extension).
168
+
169
+ kramdown provides a default template named 'document' for each converter.
170
+
171
+ Default: ''
172
+ Used by: all converters
173
+ EOF
174
+
175
+ define(:auto_ids, Boolean, true, <<EOF)
176
+ Use automatic header ID generation
177
+
178
+ If this option is `true`, ID values for all headers are automatically
179
+ generated if no ID is explicitly specified.
180
+
181
+ Default: true
182
+ Used by: HTML/Latex converter
183
+ EOF
184
+
185
+ define(:auto_id_prefix, String, '', <<EOF)
186
+ Prefix used for automatically generated heaer IDs
187
+
188
+ This option can be used to set a prefix for the automatically generated
189
+ header IDs so that there is no conflict when rendering multiple kramdown
190
+ documents into one output file separately. The prefix should only
191
+ contain characters that are valid in an ID!
192
+
193
+ Default: ''
194
+ Used by: HTML/Latex converter
195
+ EOF
196
+
197
+ define(:parse_block_html, Boolean, false, <<EOF)
198
+ Process kramdown syntax in block HTML tags
199
+
200
+ If this option is `true`, the kramdown parser processes the content of
201
+ block HTML tags as text containing block-level elements. Since this is
202
+ not wanted normally, the default is `false`. It is normally better to
203
+ selectively enable kramdown processing via the markdown attribute.
204
+
205
+ Default: false
206
+ Used by: kramdown parser
207
+ EOF
208
+
209
+ define(:parse_span_html, Boolean, true, <<EOF)
210
+ Process kramdown syntax in span HTML tags
211
+
212
+ If this option is `true`, the kramdown parser processes the content of
213
+ span HTML tags as text containing span-level elements.
214
+
215
+ Default: true
216
+ Used by: kramdown parser
217
+ EOF
218
+
219
+ define(:html_to_native, Boolean, false, <<EOF)
220
+ Convert HTML elements to native elements
221
+
222
+ If this option is `true`, the parser converts HTML elements to native
223
+ elements. For example, when parsing `<em>hallo</em>` the emphasis tag
224
+ would normally be converted to an `:html` element with tag type `:em`.
225
+ If `html_to_native` is `true`, then the emphasis would be converted to a
226
+ native `:em` element.
227
+
228
+ This is useful for converters that cannot deal with HTML elements.
229
+
230
+ Default: false
231
+ Used by: kramdown parser
232
+ EOF
233
+
234
+ define(:footnote_nr, Integer, 1, <<EOF)
235
+ The number of the first footnote
236
+
237
+ This option can be used to specify the number that is used for the first
238
+ footnote.
239
+
240
+ Default: 1
241
+ Used by: HTML converter
242
+ EOF
243
+
244
+ define(:coderay_wrap, Symbol, :div, <<EOF)
245
+ Defines how the highlighted code should be wrapped
246
+
247
+ The possible values are :span, :div or nil.
248
+
249
+ Default: :div
250
+ Used by: HTML converter
251
+ EOF
252
+
253
+ define(:coderay_line_numbers, Symbol, :inline, <<EOF)
254
+ Defines how and if line numbers should be shown
255
+
256
+ The possible values are :table, :inline, :list or nil. If this option is
257
+ nil, no line numbers are shown.
258
+
259
+ Default: :inline
260
+ Used by: HTML converter
261
+ EOF
262
+
263
+ define(:coderay_line_number_start, Integer, 1, <<EOF)
264
+ The start value for the line numbers
265
+
266
+ Default: 1
267
+ Used by: HTML converter
268
+ EOF
269
+
270
+ define(:coderay_tab_width, Integer, 8, <<EOF)
271
+ The tab width used in highlighted code
272
+
273
+ Used by: HTML converter
274
+ EOF
275
+
276
+ define(:coderay_bold_every, Integer, 10, <<EOF)
277
+ Defines how often a line number should be made bold
278
+
279
+ Default: 10
280
+ Used by: HTML converter
281
+ EOF
282
+
283
+ define(:coderay_css, Symbol, :style, <<EOF)
284
+ Defines how the highlighted code gets styled
285
+
286
+ Possible values are :class (CSS classes are applied to the code
287
+ elements, one must supply the needed CSS file) or :style (default CSS
288
+ styles are directly applied to the code elements).
289
+
290
+ Default: style
291
+ Used by: HTML converter
292
+ EOF
293
+
294
+ define(:entity_output, Symbol, :as_char, <<EOF)
295
+ Defines how entities are output
296
+
297
+ The possible values are :as_input (entities are output in the same
298
+ form as found in the input), :numeric (entities are output in numeric
299
+ form), :symbolic (entities are output in symbolic form if possible) or
300
+ :as_char (entities are output as characters if possible, only available
301
+ on Ruby 1.9).
302
+
303
+ Default: :as_char
304
+ Used by: HTML converter, kramdown converter
305
+ EOF
306
+
307
+ define(:toc_levels, Object, (1..6).to_a, <<EOF) do |val|
308
+ Defines the levels that are used for the table of contents
309
+
310
+ The individual levels can be specified by separating them with commas
311
+ (e.g. 1,2,3) or by using the range syntax (e.g. 1..3). Only the
312
+ specified levels are used for the table of contents.
313
+
314
+ Default: 1..6
315
+ Used by: HTML/Latex converter
316
+ EOF
317
+ if String === val
318
+ if val =~ /^(\d)\.\.(\d)$/
319
+ val = Range.new($1.to_i, $2.to_i).to_a
320
+ elsif val =~ /^\d(?:,\d)*$/
321
+ val = val.split(/,/).map {|s| s.to_i}.uniq
322
+ else
323
+ raise Kramdown::Error, "Invalid syntax for option toc_levels"
324
+ end
325
+ elsif Array === val
326
+ val = val.map {|s| s.to_i}.uniq
327
+ else
328
+ raise Kramdown::Error, "Invalid type #{val.class} for option toc_levels"
329
+ end
330
+ if val.any? {|i| !(1..6).include?(i)}
331
+ raise Kramdown::Error, "Level numbers for option toc_levels have to be integers from 1 to 6"
332
+ end
333
+ val
334
+ end
335
+
336
+ define(:line_width, Integer, 72, <<EOF)
337
+ Defines the line width to be used when outputting a document
338
+
339
+ Default: 72
340
+ Used by: kramdown converter
341
+ EOF
342
+
343
+ define(:latex_headers, Object, %w{section subsection subsubsection paragraph subparagraph subparagraph}, <<EOF) do |val|
344
+ Defines the LaTeX commands for different header levels
345
+
346
+ The commands for the header levels one to six can be specified by
347
+ separating them with commas.
348
+
349
+ Default: section,subsection,subsubsection,paragraph,subparagraph,subsubparagraph
350
+ Used by: Latex converter
351
+ EOF
352
+ simple_array_validator(val, :latex_headers, 6)
353
+ end
354
+
355
+ define(:smart_quotes, Object, %w{lsquo rsquo ldquo rdquo}, <<EOF) do |val|
356
+ Defines the HTML entity names or code points for smart quote output
357
+
358
+ The entities identified by entity name or code point that should be
359
+ used for, in order, a left single quote, a right single quote, a left
360
+ double and a right double quote are specified by separating them with
361
+ commas.
362
+
363
+ Default: lsquo,rsquo,ldquo,rdquo
364
+ Used by: HTML/Latex converter
365
+ EOF
366
+ val = simple_array_validator(val, :smart_quotes, 4)
367
+ val.map! {|v| Integer(v) rescue v}
368
+ val
369
+ end
370
+
371
+ end
372
+
373
+ end
@@ -0,0 +1,40 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ #--
4
+ # Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
5
+ #
6
+ # This file is part of kramdown.
7
+ #
8
+ # kramdown is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # This program is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ #++
21
+ #
22
+
23
+ module Kramdown
24
+
25
+ # This module contains all available parsers. A parser takes an input string and converts the
26
+ # string to an element tree.
27
+ #
28
+ # New parsers should be derived from the Base class which provides common functionality - see its
29
+ # API documentation for how to create a custom converter class.
30
+ module Parser
31
+
32
+ autoload :Base, 'kramdown/parser/base'
33
+ autoload :Kramdown, 'kramdown/parser/kramdown'
34
+ autoload :Html, 'kramdown/parser/html'
35
+ autoload :Markdown, 'kramdown/parser/markdown'
36
+ autoload :GithubMarkdown, 'kramdown/parser/github_markdown'
37
+
38
+ end
39
+
40
+ end
@@ -0,0 +1,136 @@
1
+ # -*- coding: utf-8 -*-
2
+ #
3
+ #--
4
+ # Copyright (C) 2009-2010 Thomas Leitner <t_leitner@gmx.at>
5
+ #
6
+ # This file is part of kramdown.
7
+ #
8
+ # kramdown is free software: you can redistribute it and/or modify
9
+ # it under the terms of the GNU General Public License as published by
10
+ # the Free Software Foundation, either version 3 of the License, or
11
+ # (at your option) any later version.
12
+ #
13
+ # This program is distributed in the hope that it will be useful,
14
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ # GNU General Public License for more details.
17
+ #
18
+ # You should have received a copy of the GNU General Public License
19
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ #++
21
+ #
22
+
23
+ module Kramdown
24
+
25
+ module Parser
26
+
27
+ # == \Base class for parsers
28
+ #
29
+ # This class serves as base class for parsers. It provides common methods that can/should be
30
+ # used by all parsers, especially by those using StringScanner for parsing.
31
+ #
32
+ # A parser object is used as a throw-away object, i.e. it is only used for storing the needed
33
+ # state information during parsing. Therefore one can't instantiate a parser object directly but
34
+ # only use the Base::parse method.
35
+ #
36
+ # == Implementing a parser
37
+ #
38
+ # Implementing a new parser is rather easy: just derive a new class from this class and put it
39
+ # in the Kramdown::Parser module -- the latter is needed so that the auto-detection of the new
40
+ # parser works correctly. Then you need to implement the +#parse+ method which has to contain
41
+ # the parsing code.
42
+ #
43
+ # Have a look at the Base::parse, Base::new and Base#parse methods for additional information!
44
+ class Base
45
+
46
+ # The hash with the parsing options.
47
+ attr_reader :options
48
+
49
+ # The array with the parser warnings.
50
+ attr_reader :warnings
51
+
52
+ # The original source string.
53
+ attr_reader :source
54
+
55
+ # The root element of element tree that is created from the source string.
56
+ attr_reader :root
57
+
58
+ # Initialize the parser object with the +source+ string and the parsing +options+.
59
+ #
60
+ # The @root element, the @warnings array and @text_type (specifies the default type for newly
61
+ # created text nodes) are automatically initialized.
62
+ def initialize(source, options)
63
+ @source = source
64
+ @options = Kramdown::Options.merge(options)
65
+ @root = Element.new(:root, nil, nil, :encoding => (RUBY_VERSION >= '1.9' ? source.encoding : nil))
66
+ @warnings = []
67
+ @text_type = :text
68
+ end
69
+ private_class_method(:new, :allocate)
70
+
71
+ # Parse the +source+ string into an element tree, possibly using the parsing +options+, and
72
+ # return the root element of the element tree and an array with warning messages.
73
+ #
74
+ # Initializes a new instance of the calling class and then calls the +#parse+ method that must
75
+ # be implemented by each subclass.
76
+ def self.parse(source, options = {})
77
+ parser = new(source, options)
78
+ parser.parse
79
+ [parser.root, parser.warnings]
80
+ end
81
+
82
+ # Parse the source string into an element tree.
83
+ #
84
+ # The parsing code should parse the source provided in @source and build an element tree the
85
+ # root of which should be @root.
86
+ #
87
+ # This is the only method that has to be implemented by sub-classes!
88
+ def parse
89
+ raise NotImplementedError
90
+ end
91
+
92
+ # Add the given warning +text+ to the warning array.
93
+ def warning(text)
94
+ @warnings << text
95
+ #TODO: add position information
96
+ end
97
+
98
+ # Modify the string +source+ to be usable by the parser (unifies line ending characters to
99
+ # +\n+ and makes sure +source+ ends with a new line character).
100
+ def adapt_source(source)
101
+ source.gsub(/\r\n?/, "\n").chomp + "\n"
102
+ end
103
+
104
+ # This helper method adds the given +text+ either to the last element in the +tree+ if it is a
105
+ # +type+ element or creates a new text element with the given +type+.
106
+ def add_text(text, tree = @tree, type = @text_type)
107
+ if tree.children.last && tree.children.last.type == type
108
+ tree.children.last.value << text
109
+ elsif !text.empty?
110
+ tree.children << Element.new(type, text)
111
+ end
112
+ end
113
+
114
+ # Extract the part of the StringScanner +strscan+ backed string specified by the +range+. This
115
+ # method works correctly under Ruby 1.8 and Ruby 1.9.
116
+ def extract_string(range, strscan)
117
+ result = nil
118
+ if RUBY_VERSION >= '1.9'
119
+ begin
120
+ enc = strscan.string.encoding
121
+ strscan.string.force_encoding('ASCII-8BIT')
122
+ result = strscan.string[range].force_encoding(enc)
123
+ ensure
124
+ strscan.string.force_encoding(enc)
125
+ end
126
+ else
127
+ result = strscan.string[range]
128
+ end
129
+ result
130
+ end
131
+
132
+ end
133
+
134
+ end
135
+
136
+ end