newstile 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (405) hide show
  1. data/AUTHORS +1 -0
  2. data/CONTRIBUTERS +6 -0
  3. data/COPYING +24 -0
  4. data/ChangeLog +5489 -0
  5. data/GPL +674 -0
  6. data/README +31 -0
  7. data/Rakefile +342 -0
  8. data/VERSION +1 -0
  9. data/benchmark/benchmark.rb +34 -0
  10. data/benchmark/generate_data.rb +112 -0
  11. data/benchmark/historic-jruby-1.4.0.dat +7 -0
  12. data/benchmark/historic-ruby-1.8.6.dat +7 -0
  13. data/benchmark/historic-ruby-1.8.7.dat +7 -0
  14. data/benchmark/historic-ruby-1.9.1p243.dat +7 -0
  15. data/benchmark/historic-ruby-1.9.2dev.dat +7 -0
  16. data/benchmark/mdbasics.text +306 -0
  17. data/benchmark/mdsyntax.text +888 -0
  18. data/benchmark/static-jruby-1.4.0.dat +7 -0
  19. data/benchmark/static-ruby-1.8.6.dat +7 -0
  20. data/benchmark/static-ruby-1.8.7.dat +7 -0
  21. data/benchmark/static-ruby-1.9.1p243.dat +7 -0
  22. data/benchmark/static-ruby-1.9.2dev.dat +7 -0
  23. data/benchmark/testing.sh +9 -0
  24. data/benchmark/timing.sh +10 -0
  25. data/bin/newstile +82 -0
  26. data/data/newstile/document.html +18 -0
  27. data/data/newstile/document.latex +43 -0
  28. data/doc/default.scss.css +519 -0
  29. data/doc/default.template +80 -0
  30. data/doc/documentation.page +72 -0
  31. data/doc/index.page +96 -0
  32. data/doc/installation.page +90 -0
  33. data/doc/links.markdown +6 -0
  34. data/doc/news.feed +10 -0
  35. data/doc/news.page +28 -0
  36. data/doc/quickref.page +564 -0
  37. data/doc/syntax.page +1615 -0
  38. data/doc/tests.page +51 -0
  39. data/doc/virtual +2 -0
  40. data/lib/newstile.rb +23 -0
  41. data/lib/newstile/compatibility.rb +34 -0
  42. data/lib/newstile/converter.rb +43 -0
  43. data/lib/newstile/converter/base.rb +111 -0
  44. data/lib/newstile/converter/html.rb +405 -0
  45. data/lib/newstile/converter/latex.rb +577 -0
  46. data/lib/newstile/converter/markdown.rb +426 -0
  47. data/lib/newstile/converter/newstile.rb +426 -0
  48. data/lib/newstile/document.rb +168 -0
  49. data/lib/newstile/error.rb +27 -0
  50. data/lib/newstile/options.rb +296 -0
  51. data/lib/newstile/parser.rb +39 -0
  52. data/lib/newstile/parser/base.rb +94 -0
  53. data/lib/newstile/parser/html.rb +499 -0
  54. data/lib/newstile/parser/newstile.rb +325 -0
  55. data/lib/newstile/parser/newstile/abbreviation.rb +66 -0
  56. data/lib/newstile/parser/newstile/attribute_list.rb +111 -0
  57. data/lib/newstile/parser/newstile/autolink.rb +54 -0
  58. data/lib/newstile/parser/newstile/blank_line.rb +43 -0
  59. data/lib/newstile/parser/newstile/block_boundary.rb +46 -0
  60. data/lib/newstile/parser/newstile/blockquote.rb +63 -0
  61. data/lib/newstile/parser/newstile/codeblock.rb +60 -0
  62. data/lib/newstile/parser/newstile/codespan.rb +57 -0
  63. data/lib/newstile/parser/newstile/emphasis.rb +70 -0
  64. data/lib/newstile/parser/newstile/eob.rb +39 -0
  65. data/lib/newstile/parser/newstile/escaped_chars.rb +38 -0
  66. data/lib/newstile/parser/newstile/extension.rb +116 -0
  67. data/lib/newstile/parser/newstile/footnote.rb +74 -0
  68. data/lib/newstile/parser/newstile/header.rb +84 -0
  69. data/lib/newstile/parser/newstile/horizontal_rule.rb +39 -0
  70. data/lib/newstile/parser/newstile/html.rb +175 -0
  71. data/lib/newstile/parser/newstile/html_entity.rb +39 -0
  72. data/lib/newstile/parser/newstile/line_break.rb +38 -0
  73. data/lib/newstile/parser/newstile/link.rb +177 -0
  74. data/lib/newstile/parser/newstile/list.rb +239 -0
  75. data/lib/newstile/parser/newstile/math.rb +64 -0
  76. data/lib/newstile/parser/newstile/paragraph.rb +55 -0
  77. data/lib/newstile/parser/newstile/smart_quotes.rb +214 -0
  78. data/lib/newstile/parser/newstile/table.rb +134 -0
  79. data/lib/newstile/parser/newstile/typographic_symbol.rb +54 -0
  80. data/lib/newstile/utils.rb +37 -0
  81. data/lib/newstile/utils/entities.rb +336 -0
  82. data/lib/newstile/utils/html.rb +75 -0
  83. data/lib/newstile/utils/ordered_hash.rb +79 -0
  84. data/lib/newstile/version.rb +28 -0
  85. data/man/man1/newstile.1 +246 -0
  86. data/setup.rb +1585 -0
  87. data/test/run_tests.rb +59 -0
  88. data/test/test_files.rb +162 -0
  89. data/test/testcases/block/01_blank_line/spaces.html +1 -0
  90. data/test/testcases/block/01_blank_line/spaces.text +3 -0
  91. data/test/testcases/block/01_blank_line/tabs.html +1 -0
  92. data/test/testcases/block/01_blank_line/tabs.text +6 -0
  93. data/test/testcases/block/02_eob/beginning.html +1 -0
  94. data/test/testcases/block/02_eob/beginning.text +3 -0
  95. data/test/testcases/block/02_eob/end.html +1 -0
  96. data/test/testcases/block/02_eob/end.text +3 -0
  97. data/test/testcases/block/02_eob/middle.html +1 -0
  98. data/test/testcases/block/02_eob/middle.text +5 -0
  99. data/test/testcases/block/03_paragraph/indented.html +18 -0
  100. data/test/testcases/block/03_paragraph/indented.text +19 -0
  101. data/test/testcases/block/03_paragraph/no_newline_at_end.html +5 -0
  102. data/test/testcases/block/03_paragraph/no_newline_at_end.text +5 -0
  103. data/test/testcases/block/03_paragraph/one_para.html +1 -0
  104. data/test/testcases/block/03_paragraph/one_para.text +1 -0
  105. data/test/testcases/block/03_paragraph/two_para.html +4 -0
  106. data/test/testcases/block/03_paragraph/two_para.text +4 -0
  107. data/test/testcases/block/04_header/atx_header.html +37 -0
  108. data/test/testcases/block/04_header/atx_header.text +34 -0
  109. data/test/testcases/block/04_header/atx_header_no_newline_at_end.html +1 -0
  110. data/test/testcases/block/04_header/atx_header_no_newline_at_end.text +1 -0
  111. data/test/testcases/block/04_header/setext_header.html +30 -0
  112. data/test/testcases/block/04_header/setext_header.html.19 +30 -0
  113. data/test/testcases/block/04_header/setext_header.text +36 -0
  114. data/test/testcases/block/04_header/setext_header_no_newline_at_end.html +1 -0
  115. data/test/testcases/block/04_header/setext_header_no_newline_at_end.text +2 -0
  116. data/test/testcases/block/04_header/with_auto_id_prefix.html +3 -0
  117. data/test/testcases/block/04_header/with_auto_id_prefix.options +2 -0
  118. data/test/testcases/block/04_header/with_auto_id_prefix.text +3 -0
  119. data/test/testcases/block/04_header/with_auto_ids.html +17 -0
  120. data/test/testcases/block/04_header/with_auto_ids.options +1 -0
  121. data/test/testcases/block/04_header/with_auto_ids.text +19 -0
  122. data/test/testcases/block/05_blockquote/indented.html +25 -0
  123. data/test/testcases/block/05_blockquote/indented.text +14 -0
  124. data/test/testcases/block/05_blockquote/lazy.html +34 -0
  125. data/test/testcases/block/05_blockquote/lazy.text +20 -0
  126. data/test/testcases/block/05_blockquote/nested.html +10 -0
  127. data/test/testcases/block/05_blockquote/nested.text +6 -0
  128. data/test/testcases/block/05_blockquote/no_newline_at_end.html +4 -0
  129. data/test/testcases/block/05_blockquote/no_newline_at_end.text +2 -0
  130. data/test/testcases/block/05_blockquote/with_code_blocks.html +15 -0
  131. data/test/testcases/block/05_blockquote/with_code_blocks.text +11 -0
  132. data/test/testcases/block/06_codeblock/error.html +4 -0
  133. data/test/testcases/block/06_codeblock/error.text +4 -0
  134. data/test/testcases/block/06_codeblock/lazy.html +4 -0
  135. data/test/testcases/block/06_codeblock/lazy.text +5 -0
  136. data/test/testcases/block/06_codeblock/no_newline_at_end.html +2 -0
  137. data/test/testcases/block/06_codeblock/no_newline_at_end.text +1 -0
  138. data/test/testcases/block/06_codeblock/no_newline_at_end_1.html +2 -0
  139. data/test/testcases/block/06_codeblock/no_newline_at_end_1.text +2 -0
  140. data/test/testcases/block/06_codeblock/normal.html +13 -0
  141. data/test/testcases/block/06_codeblock/normal.text +10 -0
  142. data/test/testcases/block/06_codeblock/tilde_syntax.html +7 -0
  143. data/test/testcases/block/06_codeblock/tilde_syntax.text +9 -0
  144. data/test/testcases/block/06_codeblock/whitespace.html +3 -0
  145. data/test/testcases/block/06_codeblock/whitespace.text +3 -0
  146. data/test/testcases/block/06_codeblock/with_blank_line.html +13 -0
  147. data/test/testcases/block/06_codeblock/with_blank_line.text +12 -0
  148. data/test/testcases/block/06_codeblock/with_eob_marker.html +6 -0
  149. data/test/testcases/block/06_codeblock/with_eob_marker.text +5 -0
  150. data/test/testcases/block/06_codeblock/with_ial.html +6 -0
  151. data/test/testcases/block/06_codeblock/with_ial.text +5 -0
  152. data/test/testcases/block/07_horizontal_rule/error.html +7 -0
  153. data/test/testcases/block/07_horizontal_rule/error.html.19 +7 -0
  154. data/test/testcases/block/07_horizontal_rule/error.text +7 -0
  155. data/test/testcases/block/07_horizontal_rule/normal.html +17 -0
  156. data/test/testcases/block/07_horizontal_rule/normal.text +17 -0
  157. data/test/testcases/block/07_horizontal_rule/sepspaces.html +3 -0
  158. data/test/testcases/block/07_horizontal_rule/sepspaces.text +3 -0
  159. data/test/testcases/block/07_horizontal_rule/septabs.html +3 -0
  160. data/test/testcases/block/07_horizontal_rule/septabs.text +3 -0
  161. data/test/testcases/block/08_list/escaping.html +17 -0
  162. data/test/testcases/block/08_list/escaping.text +17 -0
  163. data/test/testcases/block/08_list/item_ial.html +7 -0
  164. data/test/testcases/block/08_list/item_ial.text +5 -0
  165. data/test/testcases/block/08_list/lazy.html +39 -0
  166. data/test/testcases/block/08_list/lazy.text +29 -0
  167. data/test/testcases/block/08_list/list_and_hr.html +9 -0
  168. data/test/testcases/block/08_list/list_and_hr.text +5 -0
  169. data/test/testcases/block/08_list/list_and_others.html +40 -0
  170. data/test/testcases/block/08_list/list_and_others.text +26 -0
  171. data/test/testcases/block/08_list/mixed.html +117 -0
  172. data/test/testcases/block/08_list/mixed.text +66 -0
  173. data/test/testcases/block/08_list/nested.html +17 -0
  174. data/test/testcases/block/08_list/nested.text +7 -0
  175. data/test/testcases/block/08_list/other_first_element.html +39 -0
  176. data/test/testcases/block/08_list/other_first_element.text +18 -0
  177. data/test/testcases/block/08_list/simple_ol.html +19 -0
  178. data/test/testcases/block/08_list/simple_ol.text +13 -0
  179. data/test/testcases/block/08_list/simple_ul.html +48 -0
  180. data/test/testcases/block/08_list/simple_ul.text +36 -0
  181. data/test/testcases/block/08_list/single_item.html +3 -0
  182. data/test/testcases/block/08_list/single_item.text +1 -0
  183. data/test/testcases/block/08_list/special_cases.html +55 -0
  184. data/test/testcases/block/08_list/special_cases.text +35 -0
  185. data/test/testcases/block/09_html/comment.html +18 -0
  186. data/test/testcases/block/09_html/comment.text +15 -0
  187. data/test/testcases/block/09_html/content_model/deflists.html +6 -0
  188. data/test/testcases/block/09_html/content_model/deflists.options +1 -0
  189. data/test/testcases/block/09_html/content_model/deflists.text +6 -0
  190. data/test/testcases/block/09_html/content_model/tables.html +14 -0
  191. data/test/testcases/block/09_html/content_model/tables.options +1 -0
  192. data/test/testcases/block/09_html/content_model/tables.text +14 -0
  193. data/test/testcases/block/09_html/html_and_codeblocks.html +15 -0
  194. data/test/testcases/block/09_html/html_and_codeblocks.options +1 -0
  195. data/test/testcases/block/09_html/html_and_codeblocks.text +13 -0
  196. data/test/testcases/block/09_html/html_to_native/code.html +10 -0
  197. data/test/testcases/block/09_html/html_to_native/code.text +9 -0
  198. data/test/testcases/block/09_html/html_to_native/comment.html +7 -0
  199. data/test/testcases/block/09_html/html_to_native/comment.text +8 -0
  200. data/test/testcases/block/09_html/html_to_native/emphasis.html +3 -0
  201. data/test/testcases/block/09_html/html_to_native/emphasis.text +3 -0
  202. data/test/testcases/block/09_html/html_to_native/entity.html +1 -0
  203. data/test/testcases/block/09_html/html_to_native/entity.text +1 -0
  204. data/test/testcases/block/09_html/html_to_native/header.html +6 -0
  205. data/test/testcases/block/09_html/html_to_native/header.options +2 -0
  206. data/test/testcases/block/09_html/html_to_native/header.text +6 -0
  207. data/test/testcases/block/09_html/html_to_native/list_dl.html +8 -0
  208. data/test/testcases/block/09_html/html_to_native/list_dl.text +8 -0
  209. data/test/testcases/block/09_html/html_to_native/list_ol.html +15 -0
  210. data/test/testcases/block/09_html/html_to_native/list_ol.text +17 -0
  211. data/test/testcases/block/09_html/html_to_native/list_ul.html +19 -0
  212. data/test/testcases/block/09_html/html_to_native/list_ul.text +22 -0
  213. data/test/testcases/block/09_html/html_to_native/options +1 -0
  214. data/test/testcases/block/09_html/html_to_native/paragraph.html +3 -0
  215. data/test/testcases/block/09_html/html_to_native/paragraph.text +4 -0
  216. data/test/testcases/block/09_html/html_to_native/table_normal.html +14 -0
  217. data/test/testcases/block/09_html/html_to_native/table_normal.text +12 -0
  218. data/test/testcases/block/09_html/html_to_native/table_simple.html +48 -0
  219. data/test/testcases/block/09_html/html_to_native/table_simple.text +56 -0
  220. data/test/testcases/block/09_html/html_to_native/typography.html +1 -0
  221. data/test/testcases/block/09_html/html_to_native/typography.html.19 +1 -0
  222. data/test/testcases/block/09_html/html_to_native/typography.text +1 -0
  223. data/test/testcases/block/09_html/invalid_html_1.html +5 -0
  224. data/test/testcases/block/09_html/invalid_html_1.text +5 -0
  225. data/test/testcases/block/09_html/invalid_html_2.html +5 -0
  226. data/test/testcases/block/09_html/invalid_html_2.text +5 -0
  227. data/test/testcases/block/09_html/markdown_attr.html +38 -0
  228. data/test/testcases/block/09_html/markdown_attr.text +38 -0
  229. data/test/testcases/block/09_html/not_parsed.html +24 -0
  230. data/test/testcases/block/09_html/not_parsed.text +24 -0
  231. data/test/testcases/block/09_html/parse_as_raw.html +30 -0
  232. data/test/testcases/block/09_html/parse_as_raw.options +1 -0
  233. data/test/testcases/block/09_html/parse_as_raw.text +29 -0
  234. data/test/testcases/block/09_html/parse_as_span.html +12 -0
  235. data/test/testcases/block/09_html/parse_as_span.options +1 -0
  236. data/test/testcases/block/09_html/parse_as_span.text +9 -0
  237. data/test/testcases/block/09_html/parse_block_html.html +21 -0
  238. data/test/testcases/block/09_html/parse_block_html.options +1 -0
  239. data/test/testcases/block/09_html/parse_block_html.text +17 -0
  240. data/test/testcases/block/09_html/processing_instruction.html +13 -0
  241. data/test/testcases/block/09_html/processing_instruction.text +12 -0
  242. data/test/testcases/block/09_html/simple.html +64 -0
  243. data/test/testcases/block/09_html/simple.html.19 +64 -0
  244. data/test/testcases/block/09_html/simple.options +1 -0
  245. data/test/testcases/block/09_html/simple.text +59 -0
  246. data/test/testcases/block/10_ald/simple.html +2 -0
  247. data/test/testcases/block/10_ald/simple.text +8 -0
  248. data/test/testcases/block/11_ial/auto_id_and_ial.html +1 -0
  249. data/test/testcases/block/11_ial/auto_id_and_ial.options +1 -0
  250. data/test/testcases/block/11_ial/auto_id_and_ial.text +2 -0
  251. data/test/testcases/block/11_ial/simple.html +25 -0
  252. data/test/testcases/block/11_ial/simple.text +34 -0
  253. data/test/testcases/block/12_extension/comment.html +8 -0
  254. data/test/testcases/block/12_extension/comment.text +12 -0
  255. data/test/testcases/block/12_extension/ignored.html +8 -0
  256. data/test/testcases/block/12_extension/ignored.text +8 -0
  257. data/test/testcases/block/12_extension/nomarkdown.html +10 -0
  258. data/test/testcases/block/12_extension/nomarkdown.kramdown +20 -0
  259. data/test/testcases/block/12_extension/nomarkdown.latex +13 -0
  260. data/test/testcases/block/12_extension/nomarkdown.text +21 -0
  261. data/test/testcases/block/12_extension/options.html +21 -0
  262. data/test/testcases/block/12_extension/options.text +21 -0
  263. data/test/testcases/block/12_extension/options2.html +10 -0
  264. data/test/testcases/block/12_extension/options2.text +5 -0
  265. data/test/testcases/block/12_extension/options3.html +7 -0
  266. data/test/testcases/block/12_extension/options3.text +7 -0
  267. data/test/testcases/block/13_definition_list/definition_at_beginning.html +1 -0
  268. data/test/testcases/block/13_definition_list/definition_at_beginning.text +1 -0
  269. data/test/testcases/block/13_definition_list/item_ial.html +12 -0
  270. data/test/testcases/block/13_definition_list/item_ial.text +8 -0
  271. data/test/testcases/block/13_definition_list/multiple_terms.html +13 -0
  272. data/test/testcases/block/13_definition_list/multiple_terms.text +10 -0
  273. data/test/testcases/block/13_definition_list/no_def_list.html +2 -0
  274. data/test/testcases/block/13_definition_list/no_def_list.text +2 -0
  275. data/test/testcases/block/13_definition_list/para_wrapping.html +10 -0
  276. data/test/testcases/block/13_definition_list/para_wrapping.text +6 -0
  277. data/test/testcases/block/13_definition_list/separated_by_eob.html +8 -0
  278. data/test/testcases/block/13_definition_list/separated_by_eob.text +5 -0
  279. data/test/testcases/block/13_definition_list/simple.html +8 -0
  280. data/test/testcases/block/13_definition_list/simple.text +7 -0
  281. data/test/testcases/block/13_definition_list/styled_terms.html +4 -0
  282. data/test/testcases/block/13_definition_list/styled_terms.text +2 -0
  283. data/test/testcases/block/13_definition_list/too_much_space.html +3 -0
  284. data/test/testcases/block/13_definition_list/too_much_space.text +4 -0
  285. data/test/testcases/block/13_definition_list/with_blocks.html +38 -0
  286. data/test/testcases/block/13_definition_list/with_blocks.text +24 -0
  287. data/test/testcases/block/14_table/errors.html +8 -0
  288. data/test/testcases/block/14_table/errors.text +9 -0
  289. data/test/testcases/block/14_table/footer.html +65 -0
  290. data/test/testcases/block/14_table/footer.text +25 -0
  291. data/test/testcases/block/14_table/header.html +103 -0
  292. data/test/testcases/block/14_table/header.text +32 -0
  293. data/test/testcases/block/14_table/no_table.html +3 -0
  294. data/test/testcases/block/14_table/no_table.text +3 -0
  295. data/test/testcases/block/14_table/simple.html +139 -0
  296. data/test/testcases/block/14_table/simple.text +38 -0
  297. data/test/testcases/block/15_math/normal.html +26 -0
  298. data/test/testcases/block/15_math/normal.text +28 -0
  299. data/test/testcases/block/16_toc/no_toc_depth.html +33 -0
  300. data/test/testcases/block/16_toc/no_toc_depth.options +1 -0
  301. data/test/testcases/block/16_toc/no_toc_depth.text +16 -0
  302. data/test/testcases/block/16_toc/toc_depth_2.html +24 -0
  303. data/test/testcases/block/16_toc/toc_depth_2.options +1 -0
  304. data/test/testcases/block/16_toc/toc_depth_2.text +16 -0
  305. data/test/testcases/encoding.html +46 -0
  306. data/test/testcases/encoding.text +28 -0
  307. data/test/testcases/span/01_link/empty.html +5 -0
  308. data/test/testcases/span/01_link/empty.text +5 -0
  309. data/test/testcases/span/01_link/image_in_a.html +5 -0
  310. data/test/testcases/span/01_link/image_in_a.text +5 -0
  311. data/test/testcases/span/01_link/imagelinks.html +14 -0
  312. data/test/testcases/span/01_link/imagelinks.text +16 -0
  313. data/test/testcases/span/01_link/inline.html +46 -0
  314. data/test/testcases/span/01_link/inline.html.19 +46 -0
  315. data/test/testcases/span/01_link/inline.text +48 -0
  316. data/test/testcases/span/01_link/link_defs.html +9 -0
  317. data/test/testcases/span/01_link/link_defs.text +26 -0
  318. data/test/testcases/span/01_link/links_with_angle_brackets.html +3 -0
  319. data/test/testcases/span/01_link/links_with_angle_brackets.text +3 -0
  320. data/test/testcases/span/01_link/reference.html +35 -0
  321. data/test/testcases/span/01_link/reference.html.19 +35 -0
  322. data/test/testcases/span/01_link/reference.text +47 -0
  323. data/test/testcases/span/02_emphasis/empty.html +3 -0
  324. data/test/testcases/span/02_emphasis/empty.text +3 -0
  325. data/test/testcases/span/02_emphasis/errors.html +9 -0
  326. data/test/testcases/span/02_emphasis/errors.text +9 -0
  327. data/test/testcases/span/02_emphasis/nesting.html +38 -0
  328. data/test/testcases/span/02_emphasis/nesting.text +33 -0
  329. data/test/testcases/span/02_emphasis/normal.html +46 -0
  330. data/test/testcases/span/02_emphasis/normal.text +46 -0
  331. data/test/testcases/span/03_codespan/empty.html +5 -0
  332. data/test/testcases/span/03_codespan/empty.text +5 -0
  333. data/test/testcases/span/03_codespan/errors.html +1 -0
  334. data/test/testcases/span/03_codespan/errors.text +1 -0
  335. data/test/testcases/span/03_codespan/highlighting.html +1 -0
  336. data/test/testcases/span/03_codespan/highlighting.text +1 -0
  337. data/test/testcases/span/03_codespan/normal.html +16 -0
  338. data/test/testcases/span/03_codespan/normal.text +16 -0
  339. data/test/testcases/span/04_footnote/definitions.html +17 -0
  340. data/test/testcases/span/04_footnote/definitions.latex +17 -0
  341. data/test/testcases/span/04_footnote/definitions.text +24 -0
  342. data/test/testcases/span/04_footnote/footnote_nr.html +12 -0
  343. data/test/testcases/span/04_footnote/footnote_nr.latex +2 -0
  344. data/test/testcases/span/04_footnote/footnote_nr.options +1 -0
  345. data/test/testcases/span/04_footnote/footnote_nr.text +4 -0
  346. data/test/testcases/span/04_footnote/markers.html +46 -0
  347. data/test/testcases/span/04_footnote/markers.latex +23 -0
  348. data/test/testcases/span/04_footnote/markers.text +26 -0
  349. data/test/testcases/span/05_html/across_lines.html +1 -0
  350. data/test/testcases/span/05_html/across_lines.text +2 -0
  351. data/test/testcases/span/05_html/invalid.html +1 -0
  352. data/test/testcases/span/05_html/invalid.text +1 -0
  353. data/test/testcases/span/05_html/link_with_mailto.html +1 -0
  354. data/test/testcases/span/05_html/link_with_mailto.text +1 -0
  355. data/test/testcases/span/05_html/markdown_attr.html +6 -0
  356. data/test/testcases/span/05_html/markdown_attr.text +6 -0
  357. data/test/testcases/span/05_html/normal.html +30 -0
  358. data/test/testcases/span/05_html/normal.text +30 -0
  359. data/test/testcases/span/abbreviations/abbrev.html +8 -0
  360. data/test/testcases/span/abbreviations/abbrev.text +15 -0
  361. data/test/testcases/span/abbreviations/abbrev_defs.html +2 -0
  362. data/test/testcases/span/abbreviations/abbrev_defs.text +5 -0
  363. data/test/testcases/span/autolinks/url_links.html +12 -0
  364. data/test/testcases/span/autolinks/url_links.text +12 -0
  365. data/test/testcases/span/escaped_chars/normal.html +43 -0
  366. data/test/testcases/span/escaped_chars/normal.text +43 -0
  367. data/test/testcases/span/extension/comment.html +6 -0
  368. data/test/testcases/span/extension/comment.text +6 -0
  369. data/test/testcases/span/extension/ignored.html +1 -0
  370. data/test/testcases/span/extension/ignored.text +1 -0
  371. data/test/testcases/span/extension/nomarkdown.html +1 -0
  372. data/test/testcases/span/extension/nomarkdown.text +1 -0
  373. data/test/testcases/span/extension/options.html +1 -0
  374. data/test/testcases/span/extension/options.text +1 -0
  375. data/test/testcases/span/ial/simple.html +6 -0
  376. data/test/testcases/span/ial/simple.text +6 -0
  377. data/test/testcases/span/line_breaks/normal.html +11 -0
  378. data/test/testcases/span/line_breaks/normal.latex +12 -0
  379. data/test/testcases/span/line_breaks/normal.text +11 -0
  380. data/test/testcases/span/math/normal.html +5 -0
  381. data/test/testcases/span/math/normal.text +5 -0
  382. data/test/testcases/span/text_substitutions/entities.html +4 -0
  383. data/test/testcases/span/text_substitutions/entities.options +1 -0
  384. data/test/testcases/span/text_substitutions/entities.text +4 -0
  385. data/test/testcases/span/text_substitutions/entities_as_char.html +1 -0
  386. data/test/testcases/span/text_substitutions/entities_as_char.html.19 +1 -0
  387. data/test/testcases/span/text_substitutions/entities_as_char.options +1 -0
  388. data/test/testcases/span/text_substitutions/entities_as_char.text +1 -0
  389. data/test/testcases/span/text_substitutions/entities_as_input.html +1 -0
  390. data/test/testcases/span/text_substitutions/entities_as_input.options +1 -0
  391. data/test/testcases/span/text_substitutions/entities_as_input.text +1 -0
  392. data/test/testcases/span/text_substitutions/entities_numeric.html +1 -0
  393. data/test/testcases/span/text_substitutions/entities_numeric.options +1 -0
  394. data/test/testcases/span/text_substitutions/entities_numeric.text +1 -0
  395. data/test/testcases/span/text_substitutions/entities_symbolic.html +1 -0
  396. data/test/testcases/span/text_substitutions/entities_symbolic.options +1 -0
  397. data/test/testcases/span/text_substitutions/entities_symbolic.text +1 -0
  398. data/test/testcases/span/text_substitutions/greaterthan.html +1 -0
  399. data/test/testcases/span/text_substitutions/greaterthan.text +1 -0
  400. data/test/testcases/span/text_substitutions/lowerthan.html +1 -0
  401. data/test/testcases/span/text_substitutions/lowerthan.text +1 -0
  402. data/test/testcases/span/text_substitutions/typography.html +18 -0
  403. data/test/testcases/span/text_substitutions/typography.html.19 +18 -0
  404. data/test/testcases/span/text_substitutions/typography.text +18 -0
  405. metadata +476 -0
@@ -0,0 +1,7 @@
1
+ # Maruku 0.6.0 || BlueFeather 0.33 || BlueCloth Not Available. || RDiscount Not Available.
2
+ 1 0.07500 0.08500 0.00000 0.00000
3
+ 2 0.14400 0.22800 0.00000 0.00000
4
+ 4 0.28300 0.61100 0.00000 0.00000
5
+ 8 0.62300 1.94700 0.00000 0.00000
6
+ 16 1.30400 7.11800 0.00000 0.00000
7
+ 32 2.56900 28.30800 0.00000 0.00000
@@ -0,0 +1,7 @@
1
+ # Maruku 0.6.0 || BlueFeather 0.32 || BlueCloth 2.0.5 || RDiscount 1.3.5
2
+ 1 0.06202 0.12554 0.00055 0.00061
3
+ 2 0.11490 0.42433 0.00150 0.00104
4
+ 4 0.22792 1.35390 0.00189 0.00210
5
+ 8 0.50887 4.93941 0.00363 0.00411
6
+ 16 1.11704 18.90444 0.00792 0.00937
7
+ 32 2.36787 78.08507 0.01822 0.02148
@@ -0,0 +1,7 @@
1
+ # Maruku 0.6.0 || BlueFeather 0.32 || BlueCloth 2.0.5 || RDiscount 1.3.5
2
+ 1 0.06325 0.13453 0.00060 0.00058
3
+ 2 0.12058 0.45557 0.00108 0.00115
4
+ 4 0.24777 1.47726 0.00219 0.00237
5
+ 8 0.49758 5.21774 0.00401 0.00460
6
+ 16 1.18307 20.93746 0.00916 0.01011
7
+ 32 2.65514 81.59896 0.02015 0.02210
@@ -0,0 +1,7 @@
1
+ # Maruku 0.6.0 || BlueFeather 0.32 || BlueCloth 2.0.5 || RDiscount 1.3.5
2
+ 1 0.07650 0.16749 0.00067 0.00070
3
+ 2 0.22272 0.54882 0.00146 0.00132
4
+ 4 0.30977 1.95581 0.00248 0.00265
5
+ 8 0.61692 7.35415 0.00453 0.00555
6
+ 16 1.35505 28.91778 0.00939 0.01241
7
+ 32 3.00461 115.68435 0.02550 0.02510
@@ -0,0 +1,7 @@
1
+ # Maruku 0.6.0 || BlueFeather 0.32 || BlueCloth 2.0.5 || RDiscount 1.3.5
2
+ 1 0.05888 0.12860 0.00063 0.00059
3
+ 2 0.18025 0.40292 0.00115 0.00108
4
+ 4 0.24735 1.51833 0.00353 0.00299
5
+ 8 0.51102 6.07239 0.00410 0.00497
6
+ 16 1.03159 23.21515 0.01348 0.01277
7
+ 32 2.61620 92.00956 0.01893 0.02003
@@ -0,0 +1,9 @@
1
+ #!/bin/bash
2
+
3
+ source ~/.bashrc
4
+
5
+ for VERSION in `rvm list strings`; do
6
+ rvm $VERSION
7
+ echo $(ruby -v)
8
+ RUBYOPT=-rubygems rake test
9
+ done
@@ -0,0 +1,10 @@
1
+ #!/bin/bash
2
+
3
+ source ~/.bashrc
4
+
5
+ for VERSION in 1.8.6 1.8.7 1.9.1 1.9.2; do
6
+ rvm $VERSION
7
+ echo $(ruby -v)
8
+ ruby -Ilib bin/newstile < benchmark/mdsyntax.text 2>&1 > /dev/null
9
+ time ruby -Ilib bin/newstile < benchmark/mdsyntax.text > /dev/null
10
+ done
@@ -0,0 +1,82 @@
1
+ #!/usr/bin/env ruby
2
+ # -*- coding: utf-8 -*-
3
+ #
4
+ #--
5
+ # Copyright (C) 2009 Thomas Leitner <t_leitner@gmx.at>
6
+ #
7
+ # This file is part of newstile.
8
+ #
9
+ # newstile is free software: you can redistribute it and/or modify
10
+ # it under the terms of the GNU General Public License as published by
11
+ # the Free Software Foundation, either version 3 of the License, or
12
+ # (at your option) any later version.
13
+ #
14
+ # This program is distributed in the hope that it will be useful,
15
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
16
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
+ # GNU General Public License for more details.
18
+ #
19
+ # You should have received a copy of the GNU General Public License
20
+ # along with this program. If not, see <http://www.gnu.org/licenses/>.
21
+ #++
22
+ #
23
+
24
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
25
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
26
+ require 'rubygems'
27
+ require 'optparse'
28
+ require 'newstile'
29
+
30
+ options = {}
31
+ format = 'html'
32
+ OptionParser.new do |opts|
33
+ opts.banner = "Usage: newstile [options] [FILE FILE ...]"
34
+ opts.summary_indent = ' '*4
35
+
36
+ opts.separator ""
37
+ opts.separator "Command line options:"
38
+ opts.separator ""
39
+
40
+ opts.on("-i", "--input ARG", "Specify the input format: newstile (default) or html") {|v| options[:input] = v}
41
+ opts.on("-o", "--ouput ARG", "Specify the output format: html (default), newstile or latex") {|v| format = v}
42
+
43
+ opts.on("-v", "--version", "Show the version of newstile") do
44
+ puts Newstile::VERSION
45
+ exit
46
+ end
47
+ opts.on("-h", "--help", "Show the help") do
48
+ puts opts.summarize('', 5, 72)
49
+ exit
50
+ end
51
+
52
+ opts.separator ""
53
+ opts.separator "newstile options:"
54
+ opts.separator ""
55
+
56
+ Newstile::Options.definitions.each do |n, definition|
57
+ no = n.to_s.tr('_', '-')
58
+ if definition.type == Newstile::Options::Boolean
59
+ opts.on("--[no-]#{no}") {|v| options[n] = Newstile::Options.parse(n, v)}
60
+ else
61
+ next if definition.type == Object
62
+ type = definition.type
63
+ type = String if type == Symbol
64
+ opts.on("--#{no} ARG", type) {|v| options[n] = Newstile::Options.parse(n, v)}
65
+ end
66
+
67
+ definition.desc.split(/\n/).each do |line|
68
+ opts.separator opts.summary_indent + ' '*6 + line
69
+ end
70
+ opts.separator ''
71
+ end
72
+
73
+ end.parse!
74
+
75
+ begin
76
+ doc = Newstile::Document.new(ARGF.read, options)
77
+ puts doc.send("to_#{format}")
78
+ doc.warnings.each {|warn| $stderr.puts "Warning: #{warn}"}
79
+ rescue Newstile::Error => e
80
+ $stderr.puts "Error: #{e.message}"
81
+ exit(1)
82
+ end
@@ -0,0 +1,18 @@
1
+ <html>
2
+ <head>
3
+ <%
4
+ extend ::Newstile::Utils::HTML
5
+ title = ''
6
+ h = @doc.tree.children.find {|c| c.type == :header}
7
+ if h
8
+ collector = lambda {|c| c.children.collect {|cc| cc.type == :text ? escape_html(cc.value, :text) : collector.call(cc)}.join('')}
9
+ title = collector.call(h)
10
+ end
11
+ %>
12
+ <title><%= title %></title>
13
+ <meta name="generator" content="newstile <%= ::Newstile::VERSION %>" />
14
+ </head>
15
+ <body>
16
+ <%= @body %>
17
+ </body>
18
+ </html>
@@ -0,0 +1,43 @@
1
+ <%
2
+ encmap = {
3
+ 'UTF-8' => 'utf8x',
4
+ 'US-ASCII' => 'ascii',
5
+ 'ISO-8859-1' => 'latin1',
6
+ 'ISO-8859-2' => 'latin2',
7
+ 'ISO-8859-3' => 'latin3',
8
+ 'ISO-8859-4' => 'latin4',
9
+ 'ISO-8859-5' => 'latin5',
10
+ 'ISO-8859-9' => 'latin9',
11
+ 'ISO-8859-10' => 'latin10',
12
+ 'CP850' => 'cp850',
13
+ 'CP852' => 'cp852',
14
+ 'CP858' => 'cp858',
15
+ 'CP437' => 'cp437',
16
+ 'CP865' => 'cp865',
17
+ 'CP1250' => 'cp120',
18
+ 'CP1252' => 'cp1252',
19
+ 'CP1257' => 'cp1257'
20
+ }
21
+ %>
22
+ \documentclass{scrartcl}
23
+ <% if RUBY_VERSION >= '1.9' %>
24
+ \usepackage[<%= encmap[@body.encoding.name] %>]{inputenc}
25
+ <% else %>
26
+ \usepackage[mathletters]{ucs}
27
+ \usepackage[utf8x]{inputenc}
28
+ <% end %>
29
+ \usepackage[T1]{fontenc}
30
+ \usepackage{listings}
31
+ \usepackage{hyperref}
32
+ <% @doc.conversion_infos[:packages].each {|pkg| %>\usepackage{<%= pkg %>}
33
+ <% } %>
34
+
35
+ <% if @doc.conversion_infos[:packages].include?('fancyvrb') %>
36
+ \VerbatimFootnotes
37
+ <% end %>
38
+
39
+ \hypersetup{colorlinks=true,urlcolor=blue}
40
+
41
+ \begin{document}
42
+ <%= @body %>
43
+ \end{document}
@@ -0,0 +1,519 @@
1
+ $text-color: #354146;
2
+ $link-color: #1666A3;
3
+
4
+ * {
5
+ padding: 0;
6
+ margin: 0;
7
+ }
8
+
9
+ body {
10
+ margin: 0;
11
+ padding: 0;
12
+ color: #000;
13
+ text-align: left;
14
+ background: #fff;
15
+ }
16
+
17
+ body, table, code {
18
+ font: normal 12px/1.5em Verdana, Tahoma, "Trebuchet MS", "DejuVu Sans", "Bitstream Vera Sans", sans-serif;
19
+ }
20
+
21
+ .with-margin {
22
+ margin: 0 auto;
23
+ min-width: 600px;
24
+ max-width: 1000px;
25
+ }
26
+
27
+ /* header */
28
+ #fullheader {
29
+ background: #364147;
30
+ background-image: -moz-linear-gradient(top, rgba(54,65,71,1), rgba(81,92,96,1));
31
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(54,65,71,1)), to(rgba(81,92,96,1)));
32
+ position: relative;
33
+ }
34
+
35
+ #header {
36
+ @extend .with-margin;
37
+
38
+ position: relative;
39
+ padding: 0 0 0 30px;
40
+ height: 70px;
41
+
42
+ h1#logo {
43
+ a {
44
+ color: #ced1d2;
45
+ text-decoration: none;
46
+ display: block;
47
+ padding: 18px 0 17px;
48
+ font-weight: normal;
49
+ }
50
+
51
+ a:hover {
52
+ color: #fff;
53
+ }
54
+
55
+ span.slogan {
56
+ font-size: 60%; padding-left: 1.5em;
57
+ }
58
+ }
59
+ }
60
+
61
+ #donation {
62
+ position: absolute;
63
+ right: 10px;
64
+ bottom: 5px;
65
+ }
66
+
67
+ /* menu */
68
+ #fullnav {
69
+ background: #3f4a50;
70
+ background-image: -moz-linear-gradient(top, rgba(63,74,80,1), rgba(88,99,103,1));
71
+ background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(63,74,80,1)), to(rgba(88,99,103,1)));
72
+ }
73
+
74
+ #nav {
75
+ @extend .with-margin;
76
+
77
+ ul {
78
+ height: 40px;
79
+ margin: 0;
80
+ padding: 0;
81
+ list-style: none;
82
+
83
+ li {
84
+ display: block;
85
+ float: left;
86
+ margin: 0;
87
+ padding: 0;
88
+
89
+ a, span {
90
+ display: block;
91
+ float: left;
92
+ font-size: 90%;
93
+ color: white;
94
+ text-decoration: none;
95
+ text-align: center;
96
+ padding: 12px 20px 8px;
97
+ -webkit-transition: all 0.2s ease-in-out;
98
+ -moz-transition: all 0.2s ease-in-out;
99
+ -o-transition: all 0.2s ease-in-out;
100
+ transition: all 0.2s ease-in-out;
101
+ }
102
+
103
+ a:hover, span:hover {
104
+ color: #ced1d2;
105
+ text-decoration: underline;
106
+ }
107
+
108
+ }
109
+
110
+ li.webgen-menu-item-selected a, li.webgen-menu-item-selected span, li.webgen-menu-submenu-inhierarchy span {
111
+ color: #101517;
112
+ border: 1px solid #fff;
113
+ border-bottom:1px solid #e6e8e9;
114
+ background:#e6e8e9;
115
+ background-image: -moz-linear-gradient(top, #d6d8d9, #e6e8e9);
116
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d6d8d9), to(#e6e8e9));
117
+ text-decoration:none;
118
+ }
119
+
120
+ }
121
+ }
122
+
123
+ /* intro */
124
+ #fullintro {
125
+ background: #e6e8e9;
126
+ }
127
+
128
+ #intro {
129
+ @extend .with-margin;
130
+
131
+ background: #e6e8e9;
132
+ height: auto;
133
+
134
+ #intro-in {
135
+ padding: 20px 5px;
136
+ }
137
+
138
+ p {
139
+ margin: 15px 0px 0px
140
+ }
141
+
142
+ a {
143
+ color: $link-color;
144
+ background-color: inherit;
145
+ text-decoration: underline;
146
+ }
147
+
148
+ a:hover, a:link {
149
+ color: #0B4775;
150
+ }
151
+
152
+ }
153
+
154
+ /* content */
155
+ #container {
156
+ @extend .with-margin;
157
+
158
+ position: relative;
159
+ clear: both;
160
+ background-color: #fff;
161
+ background-image: -moz-linear-gradient(top, #eee, #fff 100, #fff);
162
+ background-image: -webkit-gradient(linear, 0 0, 0 200, from(#eee), to(#fff));
163
+
164
+ a {
165
+ color: $link-color;
166
+ background-color: inherit;
167
+ text-decoration: underline;
168
+ }
169
+
170
+ a:hover, a:link {
171
+ color: #0B4775;
172
+ }
173
+
174
+ #sidebar {
175
+ float: right;
176
+ width: 30%;
177
+ min-width: 100px;
178
+ margin: 0 0 10px 10px;
179
+ color: black;
180
+ font-size: 92%;
181
+ background-color: #eee;
182
+
183
+ #sidebar-content {
184
+ padding: 5px 10px;
185
+ opacity: 1;
186
+ }
187
+
188
+ p {
189
+ margin: 0px;
190
+ padding: 5px 0px;
191
+ }
192
+
193
+ ul {
194
+ list-style: square;
195
+ margin: 5px 0px 5px 15px;
196
+ padding: 3px;
197
+
198
+ ul {
199
+ margin: 0px 0px 0px 5px;
200
+ }
201
+ }
202
+
203
+ a {
204
+ padding: 1px;
205
+ text-decoration: none;
206
+ }
207
+
208
+ h1 {
209
+ font: bold 150% Perpetua, Baskerville, "Big Caslon", "Palatino Linotype", Palatino, "URW Palladio L", "Nimbus Roman No9 L", serif;
210
+ }
211
+ }
212
+
213
+ #main {
214
+
215
+ margin-top: 20px;
216
+ padding: 0px 20px;
217
+
218
+ h1, h2, h3, h4, h5, h6 {
219
+ font-family: Perpetua, Baskerville, "Big Caslon", "Palatino Linotype", Palatino, "URW Palladio L", "Nimbus Roman No9 L", serif;
220
+ font-weight: bold;
221
+ text-shadow: 1px 1px 2px #888;
222
+ line-height: 1.5em;
223
+ }
224
+ h1 { font-size: 230%; }
225
+ h2 { font-size: 190%; }
226
+ h3 { font-size: 160%; }
227
+ h4 { font-size: 130%; }
228
+
229
+ h1, h2, h3, h4 {
230
+ margin: 40px 0px 0px;
231
+ }
232
+
233
+ p, ul, ol, dl, table, pre, blockquote {
234
+ margin: 20px 0px 0px
235
+ }
236
+
237
+ ul, ol {
238
+ margin-left: 10px;
239
+ padding: 0 15px;
240
+ color: #000;
241
+ }
242
+
243
+ ul ul, ul ol, ol ul, ol ol {
244
+ margin-top: 0px;
245
+ }
246
+
247
+ dt {
248
+ background-color: #eee;
249
+ padding: 2px;
250
+ }
251
+
252
+ dd {
253
+ margin: 5px 0px 10px 20px;
254
+ padding: 2px;
255
+ }
256
+
257
+ *:target::after {
258
+ content: " ☜";
259
+ font-size: 120%;
260
+ }
261
+
262
+ pre {
263
+ margin-left: 10px;
264
+ margin-right: 10px;
265
+ padding: 5px;
266
+ text-align: left;
267
+ overflow: visible;
268
+ font: 'Lucida Console', 'courier new', monospace;
269
+ color: white;
270
+ background: #eee;
271
+ border-top: 1px solid green;
272
+ border-bottom: 1px solid green;
273
+ }
274
+
275
+ pre > code {
276
+ color: black;
277
+ font-weight: normal;
278
+ }
279
+
280
+ pre[title]::before {
281
+ display:block;
282
+ padding: 5px;
283
+ margin: -5px -5px 5px -5px;
284
+ background: green;
285
+ color: white;
286
+ content:attr(title);
287
+ font: bold 100% 'Helvetica Neue', 'Trebuchet MS', Arial, Sans-serif;
288
+ }
289
+
290
+ code {
291
+ font-family: "Lucida Console", monospace;
292
+ font-weight: bold;
293
+ font-size: 100%;
294
+ color: black;
295
+ }
296
+
297
+ blockquote.warning, blockquote.information, blockquote.important {
298
+ position: relative;
299
+ padding: 5px 5px 5px 45px;
300
+ min-height: 40px;
301
+ border: 1px solid green;
302
+ border-radius: 10px;
303
+ -webkit-border-radius: 10px;
304
+ -moz-border-radius: 10px;
305
+ box-shadow: 0px 0px 5px #888;
306
+ -moz-box-shadow: 0px 0px 5px #888;
307
+ -webkit-box-shadow: 0px 0px 5px #888;
308
+
309
+ p, ul, ol, dl, table, pre, blockquote {
310
+ margin-top: 0px;
311
+ }
312
+ }
313
+
314
+ blockquote.warning::before, blockquote.information::before, blockquote.important::before {
315
+ display: block;
316
+ position: absolute;
317
+ left: 0px;
318
+ top: 0px;
319
+ height: 30px;
320
+ width: 30px;
321
+ margin: 3px;
322
+ padding: 2px;
323
+ font: bold 30px "Georgia";
324
+ line-height: 30px;
325
+ text-align: center;
326
+ text-shadow: 1px 1px 2px #888;
327
+ background: white;
328
+ border-radius: 5px;
329
+ -webkit-border-radius: 5px;
330
+ -moz-border-radius: 5px;
331
+ }
332
+
333
+ blockquote.warning::before {
334
+ content: '⚠';
335
+ }
336
+
337
+ blockquote.information::before {
338
+ content: '✔';
339
+ }
340
+
341
+ blockquote.important::before {
342
+ content: '!';
343
+ }
344
+
345
+ blockquote pre {
346
+ border: none;
347
+ }
348
+
349
+ table {
350
+ border-collapse: collapse;
351
+ margin-left: auto;
352
+ margin-right: auto;
353
+ width: 100%;
354
+
355
+ td, th {
356
+ padding: 3px 5px;
357
+ }
358
+
359
+ th {
360
+ background-color: green;
361
+ color: white;
362
+ }
363
+ }
364
+
365
+
366
+
367
+ /* added definitions ------------------------------------------------------------ */
368
+
369
+ .news-item {
370
+ border-top: 3px solid #ddd;
371
+ margin-top: 20px;
372
+
373
+ h2 {
374
+ margin-top: 20px;
375
+ }
376
+ }
377
+
378
+ .news-date {
379
+ margin-top: 30px;
380
+ }
381
+
382
+ pre {
383
+ margin: 15px 10px;
384
+ background-color: #e6e8e9;
385
+ color: #000;
386
+ }
387
+
388
+ pre.show-whitespaces .ws-space {
389
+ background-color: #f44;
390
+ }
391
+ pre.show-whitespaces .ws-space-l {
392
+ background-color: #f22;
393
+ }
394
+ pre.show-whitespaces .ws-space-r {
395
+ background-color: #f00;
396
+ }
397
+
398
+ pre.show-whitespaces .ws-tab {
399
+ background-color: #ff4;
400
+ }
401
+ pre.show-whitespaces .ws-tab-l {
402
+ background-color: #ff2;
403
+ }
404
+ pre.show-whitespaces .ws-tab-r {
405
+ background-color: #ff0;
406
+ }
407
+
408
+ pre.show-whitespaces.ws-lr .ws-tab {
409
+ background-color: inherit;
410
+ }
411
+ pre.show-whitespaces.ws-lr .ws-space {
412
+ background-color: inherit;
413
+ opacity: 0;
414
+ }
415
+
416
+ blockquote.markdown-difference {
417
+ margin: 15px 20px;
418
+ padding: 5px;
419
+ border: 2px solid #e6e8e9;
420
+ background-color: #ffffee
421
+ }
422
+
423
+ blockquote.markdown-difference:before {
424
+ content: "Difference to Standard Markdown";
425
+ display: block;
426
+ font-weight: bold;
427
+ margin-top: 5px
428
+ }
429
+
430
+ pre.kdexample-before {
431
+ width: 45%;
432
+ float: left;
433
+ }
434
+
435
+ pre.kdexample-after-source {
436
+ width: 45%;
437
+ float: right;
438
+ background-color: #ffffee;
439
+ border: 2px solid #e6e8e9;
440
+ margin-left: 10px;
441
+ margin-right: 10px;
442
+ margin-bottom: 3px;
443
+ }
444
+
445
+ div.kdexample-after-live {
446
+ width: 45%;
447
+ float: right;
448
+ clear: right;
449
+ background-color: #eeffee;
450
+ border: 2px solid #e6e8e9;
451
+ margin: 0px 10px;
452
+ padding: 5px;
453
+ }
454
+
455
+ div.kdsyntaxlink {
456
+ float: right;
457
+ padding: 5px;
458
+ border: 1px solid #e6e8e9;
459
+ margin-right: 10px;
460
+ margin-left: 10px;
461
+ }
462
+
463
+ div.kdsyntaxlink a {
464
+ text-decoration: none;
465
+ }
466
+
467
+
468
+ }
469
+ }
470
+
471
+ /* footer */
472
+ #footer {
473
+ @extend .with-margin;
474
+
475
+ clear: both;
476
+ margin-top: 20px;
477
+ padding: 5px 20px 30px;
478
+ font-size: 92%;
479
+ text-align: left;
480
+ color: #898989;
481
+ background-color: #eee;
482
+
483
+ h2, p {
484
+ padding-left: 0;
485
+ }
486
+
487
+ a {
488
+ color: #898989;
489
+ }
490
+
491
+ a:hover {
492
+ text-decoration: none;
493
+ color: #666;
494
+ }
495
+
496
+ ul {
497
+ margin: 0;
498
+ padding: 0;
499
+ }
500
+ }
501
+
502
+
503
+ /* common rules */
504
+ img {
505
+ border: none;
506
+ }
507
+
508
+ acronym {
509
+ cursor: help;
510
+ border-bottom: 1px solid #777;
511
+ }
512
+
513
+ .float-left { float: left; }
514
+ .float-right { float: right; }
515
+ .a-left, tr.a-left td {text-align:left;}
516
+ .a-center, tr.a-center td {text-align:center;}
517
+ .a-right, tr.a-right td {text-align:right;}
518
+
519
+ .clear { clear: both; }