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,82 @@
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
+ require 'rexml/parsers/baseparser'
24
+
25
+ module Kramdown
26
+
27
+ module Converter
28
+
29
+ # Converts a Kramdown::Document to an element tree that represents the table of contents.
30
+ #
31
+ # The returned tree consists of Element objects of type :toc where the root element is just used
32
+ # as container object. Each :toc element contains as value the wrapped :header element and under
33
+ # the attribute key :id the header ID that should be used (note that this ID may not exist in
34
+ # the wrapped element).
35
+ #
36
+ # Since the TOC tree consists of special :toc elements, one cannot directly feed this tree to
37
+ # other converters!
38
+ class Toc < Base
39
+
40
+ def initialize(root, options)
41
+ super
42
+ @toc = Element.new(:toc)
43
+ @stack = []
44
+ @options[:template] = ''
45
+ end
46
+
47
+ def convert(el)
48
+ if el.type == :header && in_toc?(el)
49
+ attr = el.attr.dup
50
+ attr['id'] = generate_id(el.options[:raw_text]) if @options[:auto_ids] && !attr['id']
51
+ add_to_toc(el, attr['id'], @toc) if attr['id']
52
+ else
53
+ el.children.each {|child| convert(child)}
54
+ end
55
+ @toc
56
+ end
57
+
58
+ private
59
+
60
+ def add_to_toc(el, id, toc)
61
+ toc_element = Element.new(:toc, el, :id => id)
62
+
63
+ success = false
64
+ while !success
65
+ if @stack.empty?
66
+ @toc.children << toc_element
67
+ @stack << toc_element
68
+ success = true
69
+ elsif @stack.last.value.options[:level] < el.options[:level]
70
+ @stack.last.children << toc_element
71
+ @stack << toc_element
72
+ success = true
73
+ else
74
+ @stack.pop
75
+ end
76
+ end
77
+ end
78
+
79
+ end
80
+
81
+ end
82
+ end
@@ -0,0 +1,117 @@
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
+ require 'kramdown/compatibility'
24
+
25
+ require 'kramdown/version'
26
+ require 'kramdown/element'
27
+ require 'kramdown/error'
28
+ require 'kramdown/parser'
29
+ require 'kramdown/converter'
30
+ require 'kramdown/options'
31
+ require 'kramdown/utils'
32
+
33
+ module Kramdown
34
+
35
+ # Return the data directory for kramdown.
36
+ def self.data_dir
37
+ unless defined?(@@data_dir)
38
+ require 'rbconfig'
39
+ @@data_dir = File.expand_path(File.join(File.dirname(__FILE__), '..', '..', 'data', 'kramdown'))
40
+ @@data_dir = File.expand_path(File.join(Config::CONFIG["datadir"], "kramdown")) if !File.exists?(@@data_dir)
41
+ raise "kramdown data directory not found! This is a bug, please report it!" unless File.directory?(@@data_dir)
42
+ end
43
+ @@data_dir
44
+ end
45
+
46
+
47
+ # The main interface to kramdown.
48
+ #
49
+ # This class provides a one-stop-shop for using kramdown to convert text into various output
50
+ # formats. Use it like this:
51
+ #
52
+ # require 'kramdown'
53
+ # doc = Kramdown::Document.new('This *is* some kramdown text')
54
+ # puts doc.to_html
55
+ #
56
+ # The #to_html method is a shortcut for using the Converter::Html class. See #method_missing for
57
+ # more information.
58
+ #
59
+ # The second argument to the ::new method is an options hash for customizing the behaviour of the
60
+ # used parser and the converter. See ::new for more information!
61
+ class Document
62
+
63
+ # The root Element of the element tree. It is immediately available after the ::new method has
64
+ # been called.
65
+ attr_accessor :root
66
+
67
+ # The options hash which holds the options for parsing/converting the Kramdown document.
68
+ attr_reader :options
69
+
70
+ # An array of warning messages. It is filled with warnings during the parsing phase (i.e. in
71
+ # ::new) and the conversion phase.
72
+ attr_reader :warnings
73
+
74
+
75
+ # Create a new Kramdown document from the string +source+ and use the provided +options+. The
76
+ # options that can be used are defined in the Options module.
77
+ #
78
+ # The special options key :input can be used to select the parser that should parse the
79
+ # +source+. It has to be the name of a class in the Kramdown::Parser module. For example, to
80
+ # select the kramdown parser, one would set the :input key to +Kramdown+. If this key is not
81
+ # set, it defaults to +Kramdown+.
82
+ #
83
+ # The +source+ is immediately parsed by the selected parser so that the root element is
84
+ # immediately available and the output can be generated.
85
+ def initialize(source, options = {})
86
+ @options = Options.merge(options).freeze
87
+ parser = (options[:input] || 'kramdown').to_s
88
+ parser = parser[0..0].upcase + parser[1..-1]
89
+ if Parser.const_defined?(parser)
90
+ @root, @warnings = Parser.const_get(parser).parse(source, @options)
91
+ else
92
+ raise Kramdown::Error.new("kramdown has no parser to handle the specified input format: #{options[:input]}")
93
+ end
94
+ end
95
+
96
+ # Check if a method is invoked that begins with +to_+ and if so, try to instantiate a converter
97
+ # class (i.e. a class in the Kramdown::Converter module) and use it for converting the document.
98
+ #
99
+ # For example, +to_html+ would instantiate the Kramdown::Converter::Html class.
100
+ def method_missing(id, *attr, &block)
101
+ if id.to_s =~ /^to_(\w+)$/ && (name = $1[0..0].upcase + $1[1..-1]) && Converter.const_defined?(name)
102
+ output, warnings = Converter.const_get(name).convert(@root, @options)
103
+ @warnings.concat(warnings)
104
+ output
105
+ else
106
+ super
107
+ end
108
+ end
109
+
110
+ def inspect #:nodoc:
111
+ "<KD:Document: options=#{@options.inspect} root=#{@root.inspect} warnings=#{@warnings.inspect}>"
112
+ end
113
+
114
+ end
115
+
116
+ end
117
+
@@ -0,0 +1,524 @@
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
+ # Represents all elements in the element tree.
26
+ #
27
+ # kramdown only uses this one class for representing all available elements in an element tree
28
+ # (paragraphs, headers, emphasis, ...). The type of element can be set via the #type accessor.
29
+ #
30
+ # Following is a description of all supported element types.
31
+ #
32
+ # == Structural Elements
33
+ #
34
+ # === :root
35
+ #
36
+ # [Category] None
37
+ # [Usage context] As the root element of a document
38
+ # [Content model] Block-level elements
39
+ #
40
+ # Represents the root of a kramdown document.
41
+ #
42
+ # The root element contains the following option keys:
43
+ #
44
+ # :encoding:: When running on Ruby 1.9 this key has to be set to the encoding used for the text
45
+ # parts of the kramdown document.
46
+ #
47
+ # :abbrev_defs:: This key may be used to store the mapping of abbreviation to abbreviation
48
+ # definition.
49
+ #
50
+ # :options:: This key may be used to store options that were set during parsing of the document.
51
+ #
52
+ #
53
+ # === :blank
54
+ #
55
+ # [Category] Block-level element
56
+ # [Usage context] Where block-level elements are expected
57
+ # [Content model] Empty
58
+ #
59
+ # Represents one or more blank lines. It is not allowed to have two or more consecutive blank
60
+ # elements.
61
+ #
62
+ # The +value+ field may contain the original content of the blank lines.
63
+ #
64
+ #
65
+ # === :p
66
+ #
67
+ # [Category] Block-level element
68
+ # [Usage context] Where block-level elements are expected
69
+ # [Content model] Span-level elements
70
+ #
71
+ # Represents a paragraph.
72
+ #
73
+ # If the option :transparent is +true+, this element just represents a block of text. I.e. this
74
+ # element just functions as a container for span-level elements.
75
+ #
76
+ #
77
+ # === :header
78
+ #
79
+ # [Category] Block-level element
80
+ # [Usage context] Where block-level elements are expected
81
+ # [Content model] Span-level elements
82
+ #
83
+ # Represents a header.
84
+ #
85
+ # The option :level specifies the header level and has to contain a number between 1 and \6. The
86
+ # option :raw_text has to contain the raw header text.
87
+ #
88
+ #
89
+ # === :blockquote
90
+ #
91
+ # [Category] Block-level element
92
+ # [Usage context] Where block-level elements are expected
93
+ # [Content model] Block-level elements
94
+ #
95
+ # Represents a blockquote.
96
+ #
97
+ #
98
+ # === :codeblock
99
+ #
100
+ # [Category] Block-level element
101
+ # [Usage context] Where block-level elements are expected
102
+ # [Content model] Empty
103
+ #
104
+ # Represents a code block, i.e. a block of text that should be used as-is.
105
+ #
106
+ # The +value+ field has to contain the content of the code block.
107
+ #
108
+ #
109
+ # === :ul
110
+ #
111
+ # [Category] Block-level element
112
+ # [Usage context] Where block-level elements are expected
113
+ # [Content model] One or more :li elements
114
+ #
115
+ # Represents an unordered list.
116
+ #
117
+ #
118
+ # === :ol
119
+ #
120
+ # [Category] Block-level element
121
+ # [Usage context] Where block-level elements are expected
122
+ # [Content model] One or more :li elements
123
+ #
124
+ # Represents an ordered list.
125
+ #
126
+ #
127
+ # === :li
128
+ #
129
+ # [Category] None
130
+ # [Usage context] Inside :ol and :ul elements
131
+ # [Content model] Block-level elements
132
+ #
133
+ # Represents a list item of an ordered or unordered list.
134
+ #
135
+ # Note that the first child of a list item must not be a :blank element!
136
+ #
137
+ #
138
+ # === :dl
139
+ #
140
+ # [Category] Block-level element
141
+ # [Usage context] Where block-level elements are expected
142
+ # [Content model] One or more groups each consisting of one or more :dt elements followed by one
143
+ # or more :dd elements.
144
+ #
145
+ # Represents a definition list which contains groups consisting of terms and definitions for them.
146
+ #
147
+ #
148
+ # === :dt
149
+ #
150
+ # [Category] None
151
+ # [Usage context] Before :dt or :dd elements inside a :dl elment
152
+ # [Content model] Span-level elements
153
+ #
154
+ # Represents the term part of a term-definition group in a definition list.
155
+ #
156
+ #
157
+ # === :dd
158
+ #
159
+ # [Category] None
160
+ # [Usage context] After :dt or :dd elements inside a :dl elment
161
+ # [Content model] Block-level elements
162
+ #
163
+ # Represents the definition part of a term-definition group in a definition list.
164
+ #
165
+ #
166
+ # === :hr
167
+ #
168
+ # [Category] Block-level element
169
+ # [Usage context] Where block-level elements are expected
170
+ # [Content model] None
171
+ #
172
+ # Represents a horizontal line.
173
+ #
174
+ #
175
+ # === :table
176
+ #
177
+ # [Category] Block-level element
178
+ # [Usage context] Where block-level elements are expected
179
+ # [Content model] Zero or one :thead elements, one or more :tbody elements, zero or one :tfoot
180
+ # elements
181
+ #
182
+ # Represents a table. Each table row (i.e. :tr element) of the table has to contain the same
183
+ # number of :td elements.
184
+ #
185
+ # The option :alignment has to be an array containing the alignment values, exactly one for each
186
+ # column of the table. The possible alignment values are :left, :center, :right and :default.
187
+ #
188
+ #
189
+ # === :thead
190
+ #
191
+ # [Category] None
192
+ # [Usage context] As first element inside a :table element
193
+ # [Content model] One or more :tr elements
194
+ #
195
+ # Represents the table header.
196
+ #
197
+ #
198
+ # === :tbody
199
+ #
200
+ # [Category] None
201
+ # [Usage context] After a :thead element but before a :tfoot element inside a :table element
202
+ # [Content model] One or more :tr elements
203
+ #
204
+ # Represents a table body.
205
+ #
206
+ #
207
+ # === :tfoot
208
+ #
209
+ # [Category] None
210
+ # [Usage context] As last element inside a :table element
211
+ # [Content model] One or more :tr elements
212
+ #
213
+ # Represents the table footer.
214
+ #
215
+ #
216
+ # === :tr
217
+ #
218
+ # [Category] None
219
+ # [Usage context] Inside :thead, :tbody and :tfoot elements
220
+ # [Content model] One or more :td elements
221
+ #
222
+ # Represents a table row.
223
+ #
224
+ #
225
+ # === :td
226
+ #
227
+ # [Category] None
228
+ # [Usage context] Inside :tr elements
229
+ # [Content model] As child of :thead/:tr span-level elements, as child of :tbody/:tr and
230
+ # :tfoot/:tr block-level elements
231
+ #
232
+ # Represents a table cell.
233
+ #
234
+ #
235
+ # === :math
236
+ #
237
+ # [Category] Block/span-level element
238
+ # [Usage context] Where block/span-level elements are expected
239
+ # [Content model] None
240
+ #
241
+ # Represents mathematical text that is written in LaTeX.
242
+ #
243
+ # The +value+ field has to contain the actual mathematical text.
244
+ #
245
+ # The option :category has to be set to either :span or :block depending on the context where the
246
+ # element is used.
247
+ #
248
+ #
249
+ # == Text Markup Elements
250
+ #
251
+ # === :text
252
+ #
253
+ # [Category] Span-level element
254
+ # [Usage context] Where span-level elements are expected
255
+ # [Content model] None
256
+ #
257
+ # Represents text.
258
+ #
259
+ # The +value+ field has to contain the text itself.
260
+ #
261
+ #
262
+ # === :br
263
+ #
264
+ # [Category] Span-level element
265
+ # [Usage context] Where span-level elements are expected
266
+ # [Content model] None
267
+ #
268
+ # Represents a hard line break.
269
+ #
270
+ #
271
+ # === :a
272
+ #
273
+ # [Category] Span-level element
274
+ # [Usage context] Where span-level elements are expected
275
+ # [Content model] Span-level elements
276
+ #
277
+ # Represents a link to an URL.
278
+ #
279
+ # The attribute +href+ has to be set to the URL to which the link points. The attribute +title+
280
+ # optionally contains the title of the link.
281
+ #
282
+ #
283
+ # === :img
284
+ #
285
+ # [Category] Span-level element
286
+ # [Usage context] Where span-level elements are expected
287
+ # [Content model] None
288
+ #
289
+ # Represents an image.
290
+ #
291
+ # The attribute +src+ has to be set to the URL of the image. The attribute +alt+ has to contain a
292
+ # text description of the image. The attribute +title+ optionally contains the title of the image.
293
+ #
294
+ #
295
+ # === :codespan
296
+ #
297
+ # [Category] Span-level element
298
+ # [Usage context] Where span-level elements are expected
299
+ # [Content model] None
300
+ #
301
+ # Represents verbatim text.
302
+ #
303
+ # The +value+ field has to contain the content of the code span.
304
+ #
305
+ #
306
+ # === :footnote
307
+ #
308
+ # [Category] Span-level element
309
+ # [Usage context] Where span-level elements are expected
310
+ # [Content model] None
311
+ #
312
+ # Represents a footnote marker.
313
+ #
314
+ # The +value+ field has to contain an element whose children are the content of the footnote. The
315
+ # option :name has to contain a valid and unique footnote name. A valid footnote name consists of
316
+ # a word character or a digit and then optionally followed by other word characters, digits or
317
+ # dashes.
318
+ #
319
+ #
320
+ # === :em
321
+ #
322
+ # [Category] Span-level element
323
+ # [Usage context] Where span-level elements are expected
324
+ # [Content model] Span-level elements
325
+ #
326
+ # Represents emphasis of its contents.
327
+ #
328
+ #
329
+ # === :strong
330
+ #
331
+ # [Category] Span-level element
332
+ # [Usage context] Where span-level elements are expected
333
+ # [Content model] Span-level elements
334
+ #
335
+ # Represents strong importance for its contents.
336
+ #
337
+ #
338
+ # === :entity
339
+ #
340
+ # [Category] Span-level element
341
+ # [Usage context] Where span-level elements are expected
342
+ # [Content model] None
343
+ #
344
+ # Represents an HTML entity.
345
+ #
346
+ # The +value+ field has to contain an instance of Kramdown::Utils::Entities::Entity. The option
347
+ # :original can be used to store the original representation of the entity.
348
+ #
349
+ #
350
+ # === :typographic_sym
351
+ #
352
+ # [Category] Span-level element
353
+ # [Usage context] Where span-level elements are expected
354
+ # [Content model] None
355
+ #
356
+ # Represents a typographic symbol.
357
+ #
358
+ # The +value+ field needs to contain a Symbol representing the specific typographic symbol from
359
+ # the following list:
360
+ #
361
+ # :mdash:: An mdash character (---)
362
+ # :ndash:: An ndash character (--)
363
+ # :hellip:: An ellipsis (...)
364
+ # :laquo:: A left guillemet (<<)
365
+ # :raquo:: A right guillemet (>>)
366
+ # :laquo_space:: A left guillemet with a space (<< )
367
+ # :raquo_space:: A right guillemet with a space ( >>)
368
+ #
369
+ #
370
+ # === :smart_quote
371
+ #
372
+ # [Category] Span-level element
373
+ # [Usage context] Where span-level elements are expected
374
+ # [Content model] None
375
+ #
376
+ # Represents a quotation character.
377
+ #
378
+ # The +value+ field needs to contain a Symbol representing the specific quotation character:
379
+ #
380
+ # :lsquo:: Left single quote
381
+ # :rsquo:: Right single quote
382
+ # :ldquo:: Left double quote
383
+ # :rdquo:: Right double quote
384
+ #
385
+ #
386
+ # === :abbreviation
387
+ #
388
+ # [Category] Span-level element
389
+ # [Usage context] Where span-level elements are expected
390
+ # [Content model] None
391
+ #
392
+ # Represents a text part that is an abbreviation.
393
+ #
394
+ # The +value+ field has to contain the text part that is the abbreviation. The definition of the
395
+ # abbreviation is stored in the :root element of the document.
396
+ #
397
+ #
398
+ # == Other Elements
399
+ #
400
+ # === :html_element
401
+ #
402
+ # [Category] Block/span-level element
403
+ # [Usage context] Where block/span-level elements or raw HTML elements are expected
404
+ # [Content model] Depends on the element
405
+ #
406
+ # Represents an HTML element.
407
+ #
408
+ # The +value+ field has to contain the name of the HTML element the element is representing.
409
+ #
410
+ # The option :category has to be set to either :span or :block depending on the whether the
411
+ # element is a block-level or a span-level element. The option :content_model has to be set to the
412
+ # content model for the element (either :block if it contains block-level elements, :span if it
413
+ # contains span-level elements or :raw if it contains raw content).
414
+ #
415
+ #
416
+ # === :xml_comment
417
+ #
418
+ # [Category] Block/span-level element
419
+ # [Usage context] Where block/span-level elements are expected or in raw HTML elements
420
+ # [Content model] None
421
+ #
422
+ # Represents an XML/HTML comment.
423
+ #
424
+ # The +value+ field has to contain the whole XML/HTML comment including the delimiters.
425
+ #
426
+ # The option :category has to be set to either :span or :block depending on the context where the
427
+ # element is used.
428
+ #
429
+ #
430
+ # === :xml_pi
431
+ #
432
+ # [Category] Block/span-level element
433
+ # [Usage context] Where block/span-level elements are expected or in raw HTML elements
434
+ # [Content model] None
435
+ #
436
+ # Represents an XML/HTML processing instruction.
437
+ #
438
+ # The +value+ field has to contain the whole XML/HTML processing instruction including the
439
+ # delimiters.
440
+ #
441
+ # The option :category has to be set to either :span or :block depending on the context where the
442
+ # element is used.
443
+ #
444
+ #
445
+ # === :comment
446
+ #
447
+ # [Category] Block/span-level element
448
+ # [Usage context] Where block/span-level elements are expected
449
+ # [Content model] None
450
+ #
451
+ # Represents a comment.
452
+ #
453
+ # The +value+ field has to contain the comment.
454
+ #
455
+ # The option :category has to be set to either :span or :block depending on the context where the
456
+ # element is used. If it is set to :span, then no blank lines are allowed in the comment.
457
+ #
458
+ #
459
+ # === :raw
460
+ #
461
+ # [Category] Block/span-level element
462
+ # [Usage context] Where block/span-level elements are expected
463
+ # [Content model] None
464
+ #
465
+ # Represents a raw string that should not be modified. For example, the element could contain some
466
+ # HTML code that should be output as-is without modification and escaping.
467
+ #
468
+ # The +value+ field has to contain the actual raw text.
469
+ #
470
+ # The option :category has to be set to either :span or :block depending on the context where the
471
+ # element is used. If it is set to :span, then no blank lines are allowed in the raw text.
472
+ #
473
+ # The option :type can be set to an array of strings to define for which converters the raw string
474
+ # is valid.
475
+ class Element
476
+
477
+ # A symbol representing the element type. For example, :p or :blockquote.
478
+ attr_accessor :type
479
+
480
+ # The value of the element. The interpretation of this field depends on the type of the element.
481
+ # Many elements don't use this field.
482
+ attr_accessor :value
483
+
484
+ # The child elements of this element.
485
+ attr_accessor :children
486
+
487
+
488
+ # Create a new Element object of type +type+. The optional parameters +value+, +attr+ and
489
+ # +options+ can also be set in this constructor for convenience.
490
+ def initialize(type, value = nil, attr = nil, options = nil)
491
+ @type, @value, @attr, @options = type, value, (Utils::OrderedHash.new.merge!(attr) if attr), options
492
+ @children = []
493
+ end
494
+
495
+ # The attributes of the element. Uses an Utils::OrderedHash to retain the insertion order.
496
+ def attr
497
+ @attr ||= Utils::OrderedHash.new
498
+ end
499
+
500
+ # The options hash for the element. It is used for storing arbitray options.
501
+ def options
502
+ @options ||= {}
503
+ end
504
+
505
+ def inspect #:nodoc:
506
+ "<kd:#{@type}#{@value.nil? ? '' : ' ' + @value.inspect} #{@attr.inspect}#{options.empty? ? '' : ' ' + @options.inspect}#{@children.empty? ? '' : ' ' + @children.inspect}>"
507
+ end
508
+
509
+ CATEGORY = {} # :nodoc:
510
+ [:blank, :p, :header, :blockquote, :codeblock, :ul, :ol, :dl, :table, :hr].each {|b| CATEGORY[b] = :block}
511
+ [:text, :a, :br, :img, :codespan, :footnote, :em, :strong, :entity, :typographic_sym,
512
+ :smart_quote, :abbreviation].each {|b| CATEGORY[b] = :span}
513
+
514
+ # Return the category of +el+ which can be :block, :span or +nil+.
515
+ #
516
+ # Most elements have a fixed category, however, some elements can either appear in a block-level
517
+ # or a span-level context. These elements need to have the option :category correctly set.
518
+ def self.category(el)
519
+ CATEGORY[el.type] || el.options[:category]
520
+ end
521
+
522
+ end
523
+
524
+ end