kramdown 0.1.0

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

Potentially problematic release.


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

Files changed (201) hide show
  1. data/AUTHORS +1 -0
  2. data/COPYING +24 -0
  3. data/ChangeLog +1416 -0
  4. data/GPL +674 -0
  5. data/README +20 -0
  6. data/Rakefile +300 -0
  7. data/VERSION +1 -0
  8. data/benchmark/benchmark.rb +33 -0
  9. data/benchmark/mdbasics.text +306 -0
  10. data/benchmark/mdsyntax.text +888 -0
  11. data/benchmark/testing.sh +9 -0
  12. data/benchmark/timing.sh +10 -0
  13. data/bin/kramdown +26 -0
  14. data/doc/default.css +293 -0
  15. data/doc/default.template +78 -0
  16. data/doc/index.page +89 -0
  17. data/doc/installation.page +90 -0
  18. data/doc/news.feed +10 -0
  19. data/doc/news.page +27 -0
  20. data/doc/quickref.page +474 -0
  21. data/doc/syntax.page +1089 -0
  22. data/doc/tests.page +44 -0
  23. data/doc/virtual +2 -0
  24. data/lib/kramdown.rb +23 -0
  25. data/lib/kramdown/converter.rb +215 -0
  26. data/lib/kramdown/document.rb +150 -0
  27. data/lib/kramdown/error.rb +27 -0
  28. data/lib/kramdown/extension.rb +73 -0
  29. data/lib/kramdown/parser.rb +1056 -0
  30. data/lib/kramdown/parser/registry.rb +62 -0
  31. data/setup.rb +1585 -0
  32. data/test/run_tests.rb +58 -0
  33. data/test/test_files.rb +39 -0
  34. data/test/testcases/block/01_blank_line/spaces.html +1 -0
  35. data/test/testcases/block/01_blank_line/spaces.text +3 -0
  36. data/test/testcases/block/01_blank_line/tabs.html +1 -0
  37. data/test/testcases/block/01_blank_line/tabs.text +6 -0
  38. data/test/testcases/block/02_eob/beginning.html +1 -0
  39. data/test/testcases/block/02_eob/beginning.text +3 -0
  40. data/test/testcases/block/02_eob/end.html +1 -0
  41. data/test/testcases/block/02_eob/end.text +3 -0
  42. data/test/testcases/block/02_eob/middle.html +1 -0
  43. data/test/testcases/block/02_eob/middle.text +5 -0
  44. data/test/testcases/block/03_paragraph/indented.html +18 -0
  45. data/test/testcases/block/03_paragraph/indented.text +19 -0
  46. data/test/testcases/block/03_paragraph/no_newline_at_end.html +5 -0
  47. data/test/testcases/block/03_paragraph/no_newline_at_end.text +5 -0
  48. data/test/testcases/block/03_paragraph/one_para.html +1 -0
  49. data/test/testcases/block/03_paragraph/one_para.text +1 -0
  50. data/test/testcases/block/03_paragraph/two_para.html +4 -0
  51. data/test/testcases/block/03_paragraph/two_para.text +4 -0
  52. data/test/testcases/block/04_header/atx_header.html +26 -0
  53. data/test/testcases/block/04_header/atx_header.text +24 -0
  54. data/test/testcases/block/04_header/atx_header_no_newline_at_end.html +1 -0
  55. data/test/testcases/block/04_header/atx_header_no_newline_at_end.text +1 -0
  56. data/test/testcases/block/04_header/setext_header.html +25 -0
  57. data/test/testcases/block/04_header/setext_header.text +27 -0
  58. data/test/testcases/block/04_header/setext_header_no_newline_at_end.html +1 -0
  59. data/test/testcases/block/04_header/setext_header_no_newline_at_end.text +2 -0
  60. data/test/testcases/block/04_header/with_auto_ids.html +17 -0
  61. data/test/testcases/block/04_header/with_auto_ids.options +1 -0
  62. data/test/testcases/block/04_header/with_auto_ids.text +19 -0
  63. data/test/testcases/block/05_blockquote/indented.html +25 -0
  64. data/test/testcases/block/05_blockquote/indented.text +14 -0
  65. data/test/testcases/block/05_blockquote/nested.html +9 -0
  66. data/test/testcases/block/05_blockquote/nested.text +5 -0
  67. data/test/testcases/block/05_blockquote/no_newline_at_end.html +4 -0
  68. data/test/testcases/block/05_blockquote/no_newline_at_end.text +2 -0
  69. data/test/testcases/block/05_blockquote/only_first_quoted.html +8 -0
  70. data/test/testcases/block/05_blockquote/only_first_quoted.text +4 -0
  71. data/test/testcases/block/05_blockquote/with_code_blocks.html +15 -0
  72. data/test/testcases/block/05_blockquote/with_code_blocks.text +11 -0
  73. data/test/testcases/block/06_codeblock/error.html +4 -0
  74. data/test/testcases/block/06_codeblock/error.text +4 -0
  75. data/test/testcases/block/06_codeblock/no_newline_at_end.html +2 -0
  76. data/test/testcases/block/06_codeblock/no_newline_at_end.text +1 -0
  77. data/test/testcases/block/06_codeblock/normal.html +13 -0
  78. data/test/testcases/block/06_codeblock/normal.text +10 -0
  79. data/test/testcases/block/06_codeblock/tilde_syntax.html +7 -0
  80. data/test/testcases/block/06_codeblock/tilde_syntax.text +9 -0
  81. data/test/testcases/block/06_codeblock/whitespace.html +3 -0
  82. data/test/testcases/block/06_codeblock/whitespace.text +3 -0
  83. data/test/testcases/block/06_codeblock/with_blank_line.html +13 -0
  84. data/test/testcases/block/06_codeblock/with_blank_line.text +11 -0
  85. data/test/testcases/block/06_codeblock/with_eob_marker.html +6 -0
  86. data/test/testcases/block/06_codeblock/with_eob_marker.text +5 -0
  87. data/test/testcases/block/07_horizontal_rule/error.html +7 -0
  88. data/test/testcases/block/07_horizontal_rule/error.text +7 -0
  89. data/test/testcases/block/07_horizontal_rule/normal.html +19 -0
  90. data/test/testcases/block/07_horizontal_rule/normal.text +19 -0
  91. data/test/testcases/block/08_list/escaping.html +17 -0
  92. data/test/testcases/block/08_list/escaping.text +17 -0
  93. data/test/testcases/block/08_list/list_and_hr.html +9 -0
  94. data/test/testcases/block/08_list/list_and_hr.text +5 -0
  95. data/test/testcases/block/08_list/list_and_others.html +38 -0
  96. data/test/testcases/block/08_list/list_and_others.text +25 -0
  97. data/test/testcases/block/08_list/mixed.html +111 -0
  98. data/test/testcases/block/08_list/mixed.text +66 -0
  99. data/test/testcases/block/08_list/nested.html +17 -0
  100. data/test/testcases/block/08_list/nested.text +7 -0
  101. data/test/testcases/block/08_list/other_first_element.html +39 -0
  102. data/test/testcases/block/08_list/other_first_element.text +18 -0
  103. data/test/testcases/block/08_list/simple_ol.html +19 -0
  104. data/test/testcases/block/08_list/simple_ol.text +13 -0
  105. data/test/testcases/block/08_list/simple_ul.html +61 -0
  106. data/test/testcases/block/08_list/simple_ul.text +43 -0
  107. data/test/testcases/block/08_list/single_item.html +3 -0
  108. data/test/testcases/block/08_list/single_item.text +1 -0
  109. data/test/testcases/block/08_list/special_cases.html +29 -0
  110. data/test/testcases/block/08_list/special_cases.text +19 -0
  111. data/test/testcases/block/09_html/auto_parse_block_html.html +17 -0
  112. data/test/testcases/block/09_html/auto_parse_block_html.options +1 -0
  113. data/test/testcases/block/09_html/auto_parse_block_html.text +14 -0
  114. data/test/testcases/block/09_html/comment.html +12 -0
  115. data/test/testcases/block/09_html/comment.text +12 -0
  116. data/test/testcases/block/09_html/filtered_html.html +1 -0
  117. data/test/testcases/block/09_html/filtered_html.options +1 -0
  118. data/test/testcases/block/09_html/filtered_html.text +1 -0
  119. data/test/testcases/block/09_html/html_and_codeblocks.html +15 -0
  120. data/test/testcases/block/09_html/html_and_codeblocks.options +1 -0
  121. data/test/testcases/block/09_html/html_and_codeblocks.text +13 -0
  122. data/test/testcases/block/09_html/invalid_html_1.html +5 -0
  123. data/test/testcases/block/09_html/invalid_html_1.text +5 -0
  124. data/test/testcases/block/09_html/invalid_html_2.html +6 -0
  125. data/test/testcases/block/09_html/invalid_html_2.text +5 -0
  126. data/test/testcases/block/09_html/parse_as_raw.html +26 -0
  127. data/test/testcases/block/09_html/parse_as_raw.text +16 -0
  128. data/test/testcases/block/09_html/parse_as_span.html +12 -0
  129. data/test/testcases/block/09_html/parse_as_span.text +7 -0
  130. data/test/testcases/block/09_html/processing_instruction.html +12 -0
  131. data/test/testcases/block/09_html/processing_instruction.text +12 -0
  132. data/test/testcases/block/09_html/simple.html +78 -0
  133. data/test/testcases/block/09_html/simple.text +56 -0
  134. data/test/testcases/block/10_ald/simple.html +2 -0
  135. data/test/testcases/block/10_ald/simple.text +8 -0
  136. data/test/testcases/block/11_ial/simple.html +17 -0
  137. data/test/testcases/block/11_ial/simple.text +25 -0
  138. data/test/testcases/block/12_extension/comment.html +5 -0
  139. data/test/testcases/block/12_extension/comment.text +11 -0
  140. data/test/testcases/block/12_extension/ignored.html +6 -0
  141. data/test/testcases/block/12_extension/ignored.text +11 -0
  142. data/test/testcases/block/12_extension/kdoptions.html +15 -0
  143. data/test/testcases/block/12_extension/kdoptions.text +18 -0
  144. data/test/testcases/block/12_extension/kdoptions2.html +10 -0
  145. data/test/testcases/block/12_extension/kdoptions2.text +5 -0
  146. data/test/testcases/block/12_extension/nokramdown.html +6 -0
  147. data/test/testcases/block/12_extension/nokramdown.text +11 -0
  148. data/test/testcases/span/01_link/empty.html +3 -0
  149. data/test/testcases/span/01_link/empty.text +3 -0
  150. data/test/testcases/span/01_link/image_in_a.html +5 -0
  151. data/test/testcases/span/01_link/image_in_a.text +5 -0
  152. data/test/testcases/span/01_link/imagelinks.html +12 -0
  153. data/test/testcases/span/01_link/imagelinks.text +14 -0
  154. data/test/testcases/span/01_link/inline.html +40 -0
  155. data/test/testcases/span/01_link/inline.text +42 -0
  156. data/test/testcases/span/01_link/link_defs.html +8 -0
  157. data/test/testcases/span/01_link/link_defs.text +22 -0
  158. data/test/testcases/span/01_link/links_with_angle_brackets.html +3 -0
  159. data/test/testcases/span/01_link/links_with_angle_brackets.text +3 -0
  160. data/test/testcases/span/01_link/reference.html +32 -0
  161. data/test/testcases/span/01_link/reference.text +42 -0
  162. data/test/testcases/span/02_emphasis/empty.html +3 -0
  163. data/test/testcases/span/02_emphasis/empty.text +3 -0
  164. data/test/testcases/span/02_emphasis/errors.html +9 -0
  165. data/test/testcases/span/02_emphasis/errors.text +9 -0
  166. data/test/testcases/span/02_emphasis/nesting.html +34 -0
  167. data/test/testcases/span/02_emphasis/nesting.text +30 -0
  168. data/test/testcases/span/02_emphasis/normal.html +42 -0
  169. data/test/testcases/span/02_emphasis/normal.text +42 -0
  170. data/test/testcases/span/03_codespan/empty.html +5 -0
  171. data/test/testcases/span/03_codespan/empty.text +5 -0
  172. data/test/testcases/span/03_codespan/errors.html +1 -0
  173. data/test/testcases/span/03_codespan/errors.text +1 -0
  174. data/test/testcases/span/03_codespan/normal.html +16 -0
  175. data/test/testcases/span/03_codespan/normal.text +16 -0
  176. data/test/testcases/span/04_footnote/definitions.html +14 -0
  177. data/test/testcases/span/04_footnote/definitions.text +18 -0
  178. data/test/testcases/span/04_footnote/footnote_nr.html +12 -0
  179. data/test/testcases/span/04_footnote/footnote_nr.options +1 -0
  180. data/test/testcases/span/04_footnote/footnote_nr.text +4 -0
  181. data/test/testcases/span/04_footnote/markers.html +46 -0
  182. data/test/testcases/span/04_footnote/markers.text +26 -0
  183. data/test/testcases/span/05_html/normal.html +17 -0
  184. data/test/testcases/span/05_html/normal.text +17 -0
  185. data/test/testcases/span/autolinks/url_links.html +9 -0
  186. data/test/testcases/span/autolinks/url_links.text +9 -0
  187. data/test/testcases/span/escaped_chars/normal.html +33 -0
  188. data/test/testcases/span/escaped_chars/normal.text +33 -0
  189. data/test/testcases/span/ial/simple.html +5 -0
  190. data/test/testcases/span/ial/simple.text +5 -0
  191. data/test/testcases/span/line_breaks/normal.html +11 -0
  192. data/test/testcases/span/line_breaks/normal.text +11 -0
  193. data/test/testcases/span/text_substitutions/entities.html +4 -0
  194. data/test/testcases/span/text_substitutions/entities.text +4 -0
  195. data/test/testcases/span/text_substitutions/greaterthan.html +1 -0
  196. data/test/testcases/span/text_substitutions/greaterthan.text +1 -0
  197. data/test/testcases/span/text_substitutions/lowerthan.html +1 -0
  198. data/test/testcases/span/text_substitutions/lowerthan.text +1 -0
  199. data/test/testcases/span/text_substitutions/typography.html +3 -0
  200. data/test/testcases/span/text_substitutions/typography.text +3 -0
  201. metadata +259 -0
data/AUTHORS ADDED
@@ -0,0 +1 @@
1
+ The author of kramdown is Thomas Leitner <t_leitner@gmx.at>.
data/COPYING ADDED
@@ -0,0 +1,24 @@
1
+ kramdown - fast, pure-Ruby converter for Markdown-like markup
2
+ Copyright (C) 2009 Thomas Leitner <t_leitner@gmx.at>
3
+
4
+ kramdown is free software: you can redistribute it and/or modify
5
+ it under the terms of the GNU General Public License as published by
6
+ the Free Software Foundation, either version 3 of the License, or
7
+ (at your option) any later version.
8
+
9
+ This program is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU General Public License for more details.
13
+
14
+ You should have received a copy of the GNU General Public License
15
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
16
+
17
+
18
+ Some test cases and the benchmark files are based on test cases from
19
+ the MDTest test suite:
20
+
21
+ MDTest
22
+ Copyright (c) 2007 Michel Fortin
23
+ <http://www.michelf.com/>
24
+
@@ -0,0 +1,1416 @@
1
+ commit 528f4baec14992725b01dbbbef9ebd99d03fcf4f
2
+ Author: Thomas Leitner <t_leitner@gmx.at>
3
+ Date: Sat Nov 21 08:31:07 2009 +0100
4
+
5
+ Small fix
6
+
7
+ Rakefile
8
+
9
+ commit b41caafafc80ad1beb44b80b925232edd8f6372f
10
+ Author: Thomas Leitner <t_leitner@gmx.at>
11
+ Date: Sat Nov 21 08:28:14 2009 +0100
12
+
13
+ Added benchmark directory files to distribution files
14
+
15
+ Rakefile
16
+
17
+ commit dd90da66717ffc8a64d4b80ce259c301853876b1
18
+ Author: Thomas Leitner <t_leitner@gmx.at>
19
+ Date: Sat Nov 21 08:27:40 2009 +0100
20
+
21
+ Added two utility files
22
+
23
+ benchmark/testing.sh
24
+ benchmark/timing.sh
25
+
26
+ commit 97ed0a61e78af3474a3a75ca491ae1ecf9e59343
27
+ Author: Thomas Leitner <t_leitner@gmx.at>
28
+ Date: Sat Nov 21 08:24:52 2009 +0100
29
+
30
+ Some small fixes
31
+
32
+ doc/img/image.jpg
33
+ doc/installation.page
34
+ doc/quickref.page
35
+
36
+ commit 06c8546d1ecf8b0f61b86b5d2cc3eaec7f5cc49e
37
+ Author: Thomas Leitner <t_leitner@gmx.at>
38
+ Date: Sat Nov 21 08:11:01 2009 +0100
39
+
40
+ Updated Rakefile
41
+
42
+ * added new task for inserting copyright notices in files
43
+ * fixed the kramdown extension methods
44
+ * added README and AUTHORS files to the distribution files
45
+
46
+ Rakefile
47
+
48
+ commit 24290bdb38e87690e7e80e7bc7cac4b7a207638c
49
+ Author: Thomas Leitner <t_leitner@gmx.at>
50
+ Date: Sat Nov 21 08:09:55 2009 +0100
51
+
52
+ Some small update to the documentation
53
+
54
+ doc/index.page
55
+ doc/installation.page
56
+ doc/news/release_0_1_0.page
57
+ doc/syntax.page
58
+
59
+ commit 9ae16c8c44c6332c1bc107d90bda1c1ae9b12cb9
60
+ Author: Thomas Leitner <t_leitner@gmx.at>
61
+ Date: Sat Nov 21 08:09:17 2009 +0100
62
+
63
+ Added AUTHORS and README files
64
+
65
+ AUTHORS
66
+ README
67
+
68
+ commit 9343fb993576f58ad93bfb4fc730547399aee9f9
69
+ Author: Thomas Leitner <t_leitner@gmx.at>
70
+ Date: Sat Nov 21 08:08:46 2009 +0100
71
+
72
+ Added copyright notices to files
73
+
74
+ bin/kramdown
75
+ lib/kramdown.rb
76
+ lib/kramdown/converter.rb
77
+ lib/kramdown/document.rb
78
+ lib/kramdown/error.rb
79
+ lib/kramdown/extension.rb
80
+ lib/kramdown/parser.rb
81
+ lib/kramdown/parser/registry.rb
82
+ test/run_tests.rb
83
+ test/test_files.rb
84
+
85
+ commit 87f1516a4f982a7009a14861b1c42f2dd611aa5b
86
+ Author: Thomas Leitner <t_leitner@gmx.at>
87
+ Date: Fri Nov 20 10:45:58 2009 +0100
88
+
89
+ Some small refactorings
90
+
91
+ * emphasis parsing redone in a not-hackish way
92
+ * warnings for unclosed HTML tags are now in the correct order
93
+ * image links can now be nested inside normal links
94
+ * removed whitspace checking hack in conversion of codeblocks
95
+ * refactored parsing of extension blocks
96
+
97
+ lib/kramdown/converter.rb
98
+ lib/kramdown/parser.rb
99
+ test/testcases/span/01_link/image_in_a.html
100
+ test/testcases/span/01_link/image_in_a.text
101
+
102
+ commit 416a225e9933ce6621b821a765b6e862c4e4df87
103
+ Author: Thomas Leitner <t_leitner@gmx.at>
104
+ Date: Tue Nov 17 16:19:30 2009 +0100
105
+
106
+ Added custom error class and update error/warning messages
107
+
108
+ lib/kramdown/document.rb
109
+ lib/kramdown/error.rb
110
+ lib/kramdown/parser.rb
111
+
112
+ commit 866ed38853fc1fbed10d01655d6576daf38f47a4
113
+ Author: Thomas Leitner <t_leitner@gmx.at>
114
+ Date: Tue Nov 17 08:17:34 2009 +0100
115
+
116
+ Small fix for HTML element output
117
+
118
+ lib/kramdown/converter.rb
119
+
120
+ commit 884b957151b7c5b37f4a8e1d9c51effd5c5648c0
121
+ Author: Thomas Leitner <t_leitner@gmx.at>
122
+ Date: Tue Nov 17 08:17:17 2009 +0100
123
+
124
+ Updated extension mechanism
125
+
126
+ * Needed first parameter of an extension method is now parser instance, not current tree
127
+ * Document instance need not be set on Extension#initialize anymore
128
+ * kdoptions extension updated to cover all options
129
+
130
+ lib/kramdown/document.rb
131
+ lib/kramdown/extension.rb
132
+ lib/kramdown/parser.rb
133
+ test/testcases/block/12_extension/kdoptions.html
134
+ test/testcases/block/12_extension/kdoptions.text
135
+ test/testcases/block/12_extension/kdoptions2.html
136
+ test/testcases/block/12_extension/kdoptions2.text
137
+
138
+ commit 4f3d904090b48de5525e43e6b2e4b3edd3d0c681
139
+ Author: Thomas Leitner <t_leitner@gmx.at>
140
+ Date: Tue Nov 17 07:44:12 2009 +0100
141
+
142
+ Fixed problem with footnote numbering: option :footnote_nr now works
143
+
144
+ lib/kramdown/converter.rb
145
+ test/testcases/span/04_footnote/footnote_nr.html
146
+ test/testcases/span/04_footnote/footnote_nr.options
147
+ test/testcases/span/04_footnote/footnote_nr.text
148
+
149
+ commit 2596823c820e433adae373d650da89ef596034e9
150
+ Author: Thomas Leitner <t_leitner@gmx.at>
151
+ Date: Tue Nov 17 07:19:05 2009 +0100
152
+
153
+ Small update to test runners
154
+
155
+ test/run_tests.rb
156
+ test/test_files.rb
157
+
158
+ commit 47a03717a8b9d23bc34232ed4877e943272013d3
159
+ Author: Thomas Leitner <t_leitner@gmx.at>
160
+ Date: Mon Nov 16 20:55:22 2009 +0100
161
+
162
+ Fixed problem with HTML tags that must have a closing tag
163
+
164
+ lib/kramdown/converter.rb
165
+ test/testcases/block/09_html/simple.html
166
+ test/testcases/block/09_html/simple.text
167
+
168
+ commit 186f4adf9a0341516e3d69e87619c5c4f9fbeb28
169
+ Author: Thomas Leitner <t_leitner@gmx.at>
170
+ Date: Mon Nov 16 16:51:32 2009 +0100
171
+
172
+ Updated parser and converter classes to need only min. number of necessary arguments
173
+
174
+ lib/kramdown/converter.rb
175
+ lib/kramdown/document.rb
176
+ lib/kramdown/parser.rb
177
+
178
+ commit 937f94b677b72e960f7694fb805985f215f36f79
179
+ Author: Thomas Leitner <t_leitner@gmx.at>
180
+ Date: Mon Nov 16 16:44:58 2009 +0100
181
+
182
+ Updated API documentation
183
+
184
+ lib/kramdown/converter.rb
185
+ lib/kramdown/document.rb
186
+ lib/kramdown/extension.rb
187
+ lib/kramdown/parser.rb
188
+ lib/kramdown/parser/registry.rb
189
+
190
+ commit a6713a5d2a796907dbbe431cae5759308665cd8e
191
+ Author: Thomas Leitner <t_leitner@gmx.at>
192
+ Date: Mon Nov 16 08:05:59 2009 +0100
193
+
194
+ Removed old rdoc options
195
+
196
+ Rakefile
197
+
198
+ commit cb8be4c9ec9ab2d4ee0e9b632b7d26dae081fc86
199
+ Author: Thomas Leitner <t_leitner@gmx.at>
200
+ Date: Sun Nov 15 10:15:25 2009 +0100
201
+
202
+ Finished first version of quick reference page
203
+
204
+ Rakefile
205
+ doc/quickref.page
206
+
207
+ commit c302e96de735e2f473f96e3b09b6f4e2665cd4c3
208
+ Author: Thomas Leitner <t_leitner@gmx.at>
209
+ Date: Sun Nov 15 09:40:29 2009 +0100
210
+
211
+ Removed sections spec from syntax document
212
+
213
+ doc/syntax.page
214
+
215
+ commit 592a2875f24713af89fde985c600f88c7bfc4d2c
216
+ Author: Thomas Leitner <t_leitner@gmx.at>
217
+ Date: Sun Nov 15 09:39:49 2009 +0100
218
+
219
+ Fixed a problem with footnotes: parse tree was unintentionally modified
220
+
221
+ lib/kramdown/converter.rb
222
+
223
+ commit 892cf7893604df0d04e180564569cfd957cb70bd
224
+ Author: Thomas Leitner <t_leitner@gmx.at>
225
+ Date: Sat Nov 14 18:39:13 2009 +0100
226
+
227
+ Added kdoptions extension
228
+
229
+ doc/syntax.page
230
+ lib/kramdown/document.rb
231
+ lib/kramdown/extension.rb
232
+ test/testcases/block/12_extension/kdoptions.html
233
+ test/testcases/block/12_extension/kdoptions.text
234
+
235
+ commit d0d13da1232c01ef2511ba87a741db16c59462ca
236
+ Author: Thomas Leitner <t_leitner@gmx.at>
237
+ Date: Sat Nov 14 15:01:21 2009 +0100
238
+
239
+ Added some content to quick reference
240
+
241
+ Rakefile
242
+ doc/default.css
243
+ doc/quickref.page
244
+
245
+ commit 9e1899e811385bd3a9994bcd42b0c80fe993a5dc
246
+ Author: Thomas Leitner <t_leitner@gmx.at>
247
+ Date: Sat Nov 14 14:07:38 2009 +0100
248
+
249
+ Fix for empty div tag: must have explicit closing tag
250
+
251
+ lib/kramdown/converter.rb
252
+
253
+ commit 16416ca4e610b2caab1d03c47e52904a8326816c
254
+ Author: Thomas Leitner <t_leitner@gmx.at>
255
+ Date: Sat Nov 14 11:09:15 2009 +0100
256
+
257
+ Using string interpolation instead of concatenation bc its faster
258
+
259
+ lib/kramdown/converter.rb
260
+
261
+ commit 3111c48c2bfddcd4b89da25ee999242da803b866
262
+ Author: Thomas Leitner <t_leitner@gmx.at>
263
+ Date: Sat Nov 14 10:24:39 2009 +0100
264
+
265
+ Moved handling of IALs from converter to parser
266
+
267
+ doc/syntax.page
268
+ lib/kramdown/converter.rb
269
+ lib/kramdown/parser.rb
270
+ test/testcases/block/11_ial/simple.html
271
+ test/testcases/block/11_ial/simple.text
272
+
273
+ commit 121f36cb599e985f0c9a1616c5087fc92467c709
274
+ Author: Thomas Leitner <t_leitner@gmx.at>
275
+ Date: Sat Nov 14 07:51:29 2009 +0100
276
+
277
+ Implemented optional display of whitespace in code blocks
278
+
279
+ doc/syntax.page
280
+ lib/kramdown/converter.rb
281
+ test/testcases/block/06_codeblock/whitespace.html
282
+ test/testcases/block/06_codeblock/whitespace.text
283
+
284
+ commit c4fe93fc3eff24c970e22f2971c5c56f606c0eb3
285
+ Author: Thomas Leitner <t_leitner@gmx.at>
286
+ Date: Fri Nov 13 12:21:41 2009 +0100
287
+
288
+ Added correct statcounter tracking code
289
+
290
+ doc/default.template
291
+
292
+ commit 380ab04699bb11096527e039435b17de794b15af
293
+ Author: Thomas Leitner <t_leitner@gmx.at>
294
+ Date: Fri Nov 13 10:46:22 2009 +0100
295
+
296
+ Added transformation of ---, --, ..., << and >> into their entity counterparts
297
+
298
+ doc/syntax.page
299
+ lib/kramdown/parser.rb
300
+ test/testcases/block/07_horizontal_rule/error.html
301
+ test/testcases/span/escaped_chars/normal.html
302
+ test/testcases/span/escaped_chars/normal.text
303
+ test/testcases/span/text_substitutions/typography.html
304
+ test/testcases/span/text_substitutions/typography.text
305
+
306
+ commit 716ffc11058736318467fb036b0f9d40cbfe1f42
307
+ Author: Thomas Leitner <t_leitner@gmx.at>
308
+ Date: Thu Nov 12 20:18:52 2009 +0100
309
+
310
+ Updated code and test cases to get better code coverage
311
+
312
+ lib/kramdown/extension.rb
313
+ test/testcases/block/04_header/atx_header.html
314
+ test/testcases/block/04_header/atx_header.text
315
+ test/testcases/block/12_extension/nokramdown.html
316
+ test/testcases/block/12_extension/nokramdown.text
317
+
318
+ commit b08d9e5d17d8ef3f04b95281827f5c73f5d22067
319
+ Author: Thomas Leitner <t_leitner@gmx.at>
320
+ Date: Thu Nov 12 09:00:01 2009 +0100
321
+
322
+ Small fix for link ids: multiple spaces are converted to one
323
+
324
+ doc/syntax.page
325
+ lib/kramdown/parser.rb
326
+ test/testcases/span/01_link/reference.html
327
+ test/testcases/span/01_link/reference.text
328
+
329
+ commit d6f246053de97e1ced8abbeeca73cfda004393a2
330
+ Author: Thomas Leitner <t_leitner@gmx.at>
331
+ Date: Thu Nov 12 08:46:31 2009 +0100
332
+
333
+ Now allowing link URLs to be enclosed in angle brackets
334
+
335
+ doc/syntax.page
336
+ lib/kramdown/parser.rb
337
+ test/testcases/span/01_link/link_defs.text
338
+ test/testcases/span/01_link/links_with_angle_brackets.html
339
+ test/testcases/span/01_link/links_with_angle_brackets.text
340
+
341
+ commit 5b5ec9ccf3b64540a96f8e82d50cd9ff4a3e7dce
342
+ Author: Thomas Leitner <t_leitner@gmx.at>
343
+ Date: Thu Nov 12 08:16:09 2009 +0100
344
+
345
+ Now showing warnings in run_tests.rb when in verbose mode
346
+
347
+ test/run_tests.rb
348
+
349
+ commit 20d061f2ed6c60d6a931f8301a4c4857e3c2fd79
350
+ Author: Thomas Leitner <t_leitner@gmx.at>
351
+ Date: Thu Nov 12 08:15:39 2009 +0100
352
+
353
+ Some small clarifications and fixes
354
+
355
+ doc/syntax.page
356
+
357
+ commit c59f2a75f04a0ce0ce0a6ce78d3b371ffd1542f4
358
+ Author: Thomas Leitner <t_leitner@gmx.at>
359
+ Date: Thu Nov 12 08:15:22 2009 +0100
360
+
361
+ Further refactoring, footnotes work again
362
+
363
+ lib/kramdown/converter.rb
364
+ lib/kramdown/parser.rb
365
+
366
+ commit d672b45029488f43819cb341aed3c2eb5f0c7a25
367
+ Author: Thomas Leitner <t_leitner@gmx.at>
368
+ Date: Wed Nov 11 07:13:18 2009 +0100
369
+
370
+ Refactored code and updated test cases
371
+
372
+ lib/kramdown/converter.rb
373
+ lib/kramdown/parser.rb
374
+ test/testcases/block/08_list/mixed.html
375
+ test/testcases/block/08_list/mixed.text
376
+ test/testcases/block/08_list/nested.html
377
+ test/testcases/block/08_list/nested.text
378
+ test/testcases/block/09_html/parse_as_raw.html
379
+ test/testcases/block/09_html/parse_as_raw.text
380
+ test/testcases/block/09_html/raw_html.html
381
+ test/testcases/block/09_html/raw_html.text
382
+ test/testcases/block/09_html/simple.html
383
+ test/testcases/block/09_html/simple.text
384
+ test/testcases/block/12_extension/ignored.html
385
+ test/testcases/block/12_extension/ignored.text
386
+ test/testcases/span/01_link/link_defs.text
387
+ test/testcases/span/04_footnote/definitions.text
388
+ test/testcases/span/04_footnote/markers.html
389
+ test/testcases/span/04_footnote/markers.text
390
+ test/testcases/span/ial/simple.html
391
+ test/testcases/span/ial/simple.text
392
+
393
+ commit 6c3d5a4ff4dd8d49fc4732c78dd265394d6db47c
394
+ Author: Thomas Leitner <t_leitner@gmx.at>
395
+ Date: Mon Nov 9 08:16:46 2009 +0100
396
+
397
+ Removed some comments
398
+
399
+ lib/kramdown/parser.rb
400
+
401
+ commit 8b877bbd216da87ef7ac316ad23ddddc758c0762
402
+ Author: Thomas Leitner <t_leitner@gmx.at>
403
+ Date: Mon Nov 9 07:37:42 2009 +0100
404
+
405
+ Added test cases for empty span level elements
406
+
407
+ test/testcases/span/01_link/empty.html
408
+ test/testcases/span/01_link/empty.text
409
+ test/testcases/span/02_emphasis/empty.html
410
+ test/testcases/span/02_emphasis/empty.text
411
+ test/testcases/span/03_codespan/empty.html
412
+ test/testcases/span/03_codespan/empty.text
413
+
414
+ commit 59e453a4db903b8a79bf30e7a651dc24a93f96bb
415
+ Author: Thomas Leitner <t_leitner@gmx.at>
416
+ Date: Sun Nov 8 18:31:26 2009 +0100
417
+
418
+ Fixed warning on Ruby 1.9.2
419
+
420
+ lib/kramdown/parser/registry.rb
421
+
422
+ commit aa38018f78edcc06916aa8a81d5dae734295bb72
423
+ Author: Thomas Leitner <t_leitner@gmx.at>
424
+ Date: Sun Nov 8 18:20:06 2009 +0100
425
+
426
+ Updated Rakefile tasks
427
+
428
+ Rakefile
429
+
430
+ commit 83a77a129c02a29faba980b6f557b77bd771f28a
431
+ Author: Thomas Leitner <t_leitner@gmx.at>
432
+ Date: Sun Nov 8 18:19:57 2009 +0100
433
+
434
+ Corrected spelling of kramdown
435
+
436
+ benchmark/benchmark.rb
437
+
438
+ commit 241903b2cc74c6be037e5c247d0ea61638f92964
439
+ Author: Thomas Leitner <t_leitner@gmx.at>
440
+ Date: Sun Nov 8 18:19:12 2009 +0100
441
+
442
+ Updated website for first release
443
+
444
+ doc/default.css
445
+ doc/default.template
446
+ doc/documentation.page
447
+ doc/img/bg.jpg
448
+ doc/img/image.jpg
449
+ doc/img/line.jpg
450
+ doc/img/shadow.jpg
451
+ doc/index.page
452
+ doc/installation.page
453
+ doc/news.feed
454
+ doc/news.page
455
+ doc/news/release_0_1_0.page
456
+ doc/syntax.page
457
+ doc/tests.page
458
+ doc/virtual
459
+ misc/default.css
460
+ misc/default.template
461
+ misc/htmldoc.metainfo
462
+ misc/htmldoc.virtual
463
+ misc/images/arrow.gif
464
+ misc/images/error.gif
465
+ misc/images/exclamation.gif
466
+ misc/images/headerbg.jpg
467
+ misc/images/information.gif
468
+ misc/images/quote.gif
469
+ website/src/default.template
470
+ website/src/images/feed.gif
471
+ website/src/index.page
472
+ website/src/metainfo
473
+ website/src/news/default.template
474
+ website/src/news/index.page
475
+ website/src/news/news.feed
476
+ website/src/news/release_0_1_0.page
477
+ website/src/virtual
478
+
479
+ commit ef6dde9d6506f9434d0f5fbccb00fb99d2d65aea
480
+ Author: Thomas Leitner <t_leitner@gmx.at>
481
+ Date: Sat Nov 7 10:50:57 2009 +0100
482
+
483
+ Small update to benchmark suite
484
+
485
+ benchmark/benchmark.rb
486
+
487
+ commit efa364c09d33d466dc53d5b0c25e960e90c18170
488
+ Author: Thomas Leitner <t_leitner@gmx.at>
489
+ Date: Sat Nov 7 08:43:24 2009 +0100
490
+
491
+ Added the nokramdown extension
492
+
493
+ doc/syntax.page
494
+ lib/kramdown/extension.rb
495
+
496
+ commit 5199da2955a5125f502ca5ca12381221d48286e9
497
+ Author: Thomas Leitner <t_leitner@gmx.at>
498
+ Date: Sat Nov 7 07:48:01 2009 +0100
499
+
500
+ Fixed problem with horizontal rule regexp parsing lines with mixed chars
501
+
502
+ lib/kramdown/parser.rb
503
+ test/testcases/block/07_horizontal_rule/error.html
504
+ test/testcases/block/07_horizontal_rule/error.text
505
+ test/testcases/block/07_horizontal_rule/normal.html
506
+ test/testcases/block/07_horizontal_rule/normal.text
507
+
508
+ commit 37201f920274b163a356888f24d4d19fbd162ef1
509
+ Author: Thomas Leitner <t_leitner@gmx.at>
510
+ Date: Fri Nov 6 16:14:25 2009 +0100
511
+
512
+ Updated COPYING file
513
+
514
+ COPYING
515
+
516
+ commit 23eadb16a12ee071415edd1877d06248d8b1f12a
517
+ Author: Thomas Leitner <t_leitner@gmx.at>
518
+ Date: Fri Nov 6 16:13:47 2009 +0100
519
+
520
+ Added benchmark
521
+
522
+ benchmark/benchmark.rb
523
+ benchmark/mdbasics.text
524
+ benchmark/mdsyntax.text
525
+
526
+ commit 22dcddc2026ddab3d3c386f1a8f21353d4f626b2
527
+ Author: Thomas Leitner <t_leitner@gmx.at>
528
+ Date: Fri Nov 6 15:06:26 2009 +0100
529
+
530
+ Added test case for escaped chars
531
+
532
+ doc/syntax.page
533
+ test/testcases/span/escaped_chars/normal.html
534
+ test/testcases/span/escaped_chars/normal.text
535
+
536
+ commit 3e51f4c41feff8fa5912b4ad93c4054183d3d5e5
537
+ Author: Thomas Leitner <t_leitner@gmx.at>
538
+ Date: Fri Nov 6 15:01:50 2009 +0100
539
+
540
+ Clarified what punctuation characters are
541
+
542
+ doc/syntax.page
543
+ lib/kramdown/parser.rb
544
+ test/testcases/span/01_link/link_defs.html
545
+ test/testcases/span/01_link/link_defs.text
546
+
547
+ commit 200550d3851b57b0d3b3acd90a592881dae3c447
548
+ Author: Thomas Leitner <t_leitner@gmx.at>
549
+ Date: Thu Nov 5 20:53:20 2009 +0100
550
+
551
+ Removed old HTML parsing library
552
+
553
+ lib/kramdown/parser/html.rb
554
+
555
+ commit 4305ef80f68fac62092747a88a95f39b12cd0a9b
556
+ Author: Thomas Leitner <t_leitner@gmx.at>
557
+ Date: Thu Nov 5 20:51:39 2009 +0100
558
+
559
+ Now using GPL v3 as license
560
+
561
+ COPYING
562
+ GPL
563
+
564
+ commit a5cb7ce5ff9c513be673f0c80db6138c25616f14
565
+ Author: Thomas Leitner <t_leitner@gmx.at>
566
+ Date: Thu Nov 5 20:49:45 2009 +0100
567
+
568
+ Removed dcov from Rakefile and updated tag line
569
+
570
+ Rakefile
571
+
572
+ commit 8d755f9fee0daf5d04b479ece5dce6a9d2d5e463
573
+ Author: Thomas Leitner <t_leitner@gmx.at>
574
+ Date: Thu Nov 5 09:34:30 2009 +0100
575
+
576
+ Small update to extension block spec
577
+
578
+ doc/syntax.page
579
+
580
+ commit 9b0888387b1e36c4243c2695b0d53b6258cd3382
581
+ Author: Thomas Leitner <t_leitner@gmx.at>
582
+ Date: Thu Nov 5 09:34:08 2009 +0100
583
+
584
+ Updated extension block test cases
585
+
586
+ test/testcases/block/12_extension/comment.html
587
+ test/testcases/block/12_extension/comment.text
588
+
589
+ commit 08b805329452d270575e97f78239b1f0bc77b40e
590
+ Author: Thomas Leitner <t_leitner@gmx.at>
591
+ Date: Thu Nov 5 09:33:49 2009 +0100
592
+
593
+ Implemented extension blocks
594
+
595
+ lib/kramdown/document.rb
596
+ lib/kramdown/extension.rb
597
+ lib/kramdown/parser.rb
598
+
599
+ commit bd02049efb2ae2b270b22cb6ac1ebb6027c14f32
600
+ Author: Thomas Leitner <t_leitner@gmx.at>
601
+ Date: Thu Nov 5 08:41:15 2009 +0100
602
+
603
+ Fixed a problem with running kramdown on 1.8.7
604
+
605
+ lib/kramdown/parser.rb
606
+
607
+ commit 10fafc53b0cb291499ad4fd30ce313732a63c608
608
+ Author: Thomas Leitner <t_leitner@gmx.at>
609
+ Date: Wed Nov 4 17:01:28 2009 +0100
610
+
611
+ Added main file for require
612
+
613
+ lib/kramdown.rb
614
+
615
+ commit 7bec875aa813e10ef35ba7473a7447031d6b2020
616
+ Author: Thomas Leitner <t_leitner@gmx.at>
617
+ Date: Wed Nov 4 17:00:39 2009 +0100
618
+
619
+ Updated parser and converter to adhere to spec
620
+
621
+ lib/kramdown/converter.rb
622
+ lib/kramdown/document.rb
623
+ lib/kramdown/parser.rb
624
+ lib/kramdown/parser/registry.rb
625
+
626
+ commit 2c180f53e87683622f6a8d1a76ead51e851540cb
627
+ Author: Thomas Leitner <t_leitner@gmx.at>
628
+ Date: Wed Nov 4 16:53:13 2009 +0100
629
+
630
+ Small update to run_tests script
631
+
632
+ test/run_tests.rb
633
+
634
+ commit 5d85e994fad10f8111091a5281305612f4fc8566
635
+ Author: Thomas Leitner <t_leitner@gmx.at>
636
+ Date: Wed Nov 4 16:45:52 2009 +0100
637
+
638
+ Small fix for link test case
639
+
640
+ test/testcases/span/01_link/imagelinks.html
641
+
642
+ commit ce32e8ad9863f44ddaeb90f3ad1bad58b6cdd0dc
643
+ Author: Thomas Leitner <t_leitner@gmx.at>
644
+ Date: Wed Nov 4 09:14:43 2009 +0100
645
+
646
+ Another bunch of updates to the syntax spec
647
+
648
+ doc/syntax.page
649
+
650
+ commit 484b49e6bb88ef85d7184b3672e17dcf532526d9
651
+ Author: Thomas Leitner <t_leitner@gmx.at>
652
+ Date: Wed Nov 4 09:12:34 2009 +0100
653
+
654
+ Updated various block test cases
655
+
656
+ test/testcases/block/06_codeblock/with_blank_line.html
657
+ test/testcases/block/06_codeblock/with_blank_line.text
658
+ test/testcases/block/08_list/escaping.html
659
+ test/testcases/block/08_list/escaping.text
660
+ test/testcases/block/08_list/list_and_others.html
661
+ test/testcases/block/08_list/list_and_others.text
662
+ test/testcases/block/11_ial/simple.html
663
+ test/testcases/block/11_ial/simple.text
664
+
665
+ commit 2711570e47ceb56017eec3b1e668b6647c6a9cfc
666
+ Author: Thomas Leitner <t_leitner@gmx.at>
667
+ Date: Wed Nov 4 09:11:34 2009 +0100
668
+
669
+ Updated HTML block test cases to adhere to spec
670
+
671
+ test/testcases/block/09_html/auto_parse_block_html.html
672
+ test/testcases/block/09_html/comment.html
673
+ test/testcases/block/09_html/comment.text
674
+ test/testcases/block/09_html/html_and_codeblocks.html
675
+ test/testcases/block/09_html/invalid_html_1.html
676
+ test/testcases/block/09_html/invalid_html_2.html
677
+ test/testcases/block/09_html/parse_as_span.html
678
+ test/testcases/block/09_html/parse_as_span.text
679
+ test/testcases/block/09_html/processing_instruction.html
680
+ test/testcases/block/09_html/processing_instruction.text
681
+ test/testcases/block/09_html/raw_html.html
682
+ test/testcases/block/09_html/raw_html.text
683
+ test/testcases/block/09_html/simple.html
684
+ test/testcases/block/09_html/simple.options
685
+ test/testcases/block/09_html/simple.text
686
+
687
+ commit 858df82af083e4b9a45bf4a61990d2aebabf7072
688
+ Author: Thomas Leitner <t_leitner@gmx.at>
689
+ Date: Wed Nov 4 09:09:39 2009 +0100
690
+
691
+ Updated and rearranged span test cases
692
+
693
+ test/testcases/attribute_lists/ial_span.html
694
+ test/testcases/attribute_lists/ial_span.text
695
+ test/testcases/autolinks/url_links.html
696
+ test/testcases/autolinks/url_links.text
697
+ test/testcases/line_breaks/normal.html
698
+ test/testcases/line_breaks/normal.text
699
+ test/testcases/span/02_emphasis/errors.html
700
+ test/testcases/span/02_emphasis/errors.text
701
+ test/testcases/span/02_emphasis/nesting.html
702
+ test/testcases/span/02_emphasis/nesting.text
703
+ test/testcases/span/02_emphasis/normal.html
704
+ test/testcases/span/02_emphasis/normal.text
705
+ test/testcases/span/03_codespan/normal.html
706
+ test/testcases/span/03_codespan/normal.text
707
+ test/testcases/span/04_footnote/markers.html
708
+ test/testcases/span/05_html/normal.html
709
+ test/testcases/span/05_html/normal.text
710
+ test/testcases/span/autolinks/url_links.html
711
+ test/testcases/span/autolinks/url_links.text
712
+ test/testcases/span/ial/simple.html
713
+ test/testcases/span/ial/simple.text
714
+ test/testcases/span/line_breaks/normal.html
715
+ test/testcases/span/line_breaks/normal.text
716
+ test/testcases/span/text_substitutions/entities.html
717
+ test/testcases/span/text_substitutions/entities.text
718
+ test/testcases/span/text_substitutions/greaterthan.html
719
+ test/testcases/span/text_substitutions/greaterthan.text
720
+ test/testcases/span/text_substitutions/lowerthan.html
721
+ test/testcases/span/text_substitutions/lowerthan.text
722
+ test/testcases/text_substitutions/ampersands.html
723
+ test/testcases/text_substitutions/ampersands.text
724
+ test/testcases/text_substitutions/greaterthan.html
725
+ test/testcases/text_substitutions/greaterthan.text
726
+ test/testcases/text_substitutions/lowerthan.html
727
+ test/testcases/text_substitutions/lowerthan.text
728
+
729
+ commit 5a8286a877a3b9e2a868c06e78a0db57483a0e42
730
+ Author: Thomas Leitner <t_leitner@gmx.at>
731
+ Date: Sat Oct 24 22:24:39 2009 +0200
732
+
733
+ Small fix in footnote definition test case
734
+
735
+ test/testcases/span/04_footnote/definitions.html
736
+
737
+ commit a14d9a1062e8516a0a34db1ed69aa33a3a8c876e
738
+ Author: Thomas Leitner <t_leitner@gmx.at>
739
+ Date: Sat Oct 24 17:57:16 2009 +0200
740
+
741
+ Updated list test cases to adhere to spec
742
+
743
+ test/testcases/block/08_list/list_and_others.html
744
+ test/testcases/block/08_list/list_and_others.text
745
+ test/testcases/block/08_list/mixed.text
746
+ test/testcases/block/08_list/nested.text
747
+ test/testcases/block/08_list/simple_ul.html
748
+ test/testcases/block/08_list/simple_ul.text
749
+ test/testcases/block/08_list/special_cases.html
750
+ test/testcases/block/08_list/special_cases.text
751
+
752
+ commit 0b80a72a1757faa6314b415751a738ff1cc78d8d
753
+ Author: Thomas Leitner <t_leitner@gmx.at>
754
+ Date: Sat Oct 24 17:56:25 2009 +0200
755
+
756
+ Clarified use of tabs and updated list spec
757
+
758
+ doc/syntax.page
759
+
760
+ commit 6c33865ed46b7d5aa7ce229c39b64a5bcb6bb0e3
761
+ Author: Thomas Leitner <t_leitner@gmx.at>
762
+ Date: Fri Oct 23 16:24:47 2009 +0200
763
+
764
+ Adjusted block test cases to conform to spec
765
+
766
+ test/testcases/block/01_blank_line/spaces.html
767
+ test/testcases/block/01_blank_line/tabs.html
768
+ test/testcases/block/02_eob/beginning.html
769
+ test/testcases/block/02_eob/end.html
770
+ test/testcases/block/02_eob/middle.html
771
+ test/testcases/block/03_paragraph/indented.html
772
+ test/testcases/block/03_paragraph/indented.text
773
+ test/testcases/block/04_header/atx_header.html
774
+ test/testcases/block/04_header/setext_header.html
775
+ test/testcases/block/05_blockquote/nested.html
776
+ test/testcases/block/06_codeblock/error.html
777
+ test/testcases/block/06_codeblock/error.text
778
+ test/testcases/block/10_ald/simple.html
779
+ test/testcases/block/11_ial/simple.html
780
+
781
+ commit ba929f2b0274b527390b2eead0568527c0aa4316
782
+ Author: Thomas Leitner <t_leitner@gmx.at>
783
+ Date: Thu Oct 22 20:56:31 2009 +0200
784
+
785
+ Updated syntax doc - code blocks may be preceded directly by paragraphs
786
+
787
+ doc/syntax.page
788
+
789
+ commit 0d8965a57963b3e6b83bc7076d9f09b93d47fe3a
790
+ Author: Thomas Leitner <t_leitner@gmx.at>
791
+ Date: Thu Oct 22 20:54:58 2009 +0200
792
+
793
+ Deleted test cases for setting options via email like headers
794
+
795
+ test/testcases/email_header/normal_header.html
796
+ test/testcases/email_header/normal_header.text
797
+
798
+ commit 9a6dbf97e04e048f7e0c56fa1893bbdd0d6610f5
799
+ Author: Thomas Leitner <t_leitner@gmx.at>
800
+ Date: Thu Oct 22 20:54:29 2009 +0200
801
+
802
+ Moved Document class to lib/kramdown/document.rb file
803
+
804
+ lib/kramdown.rb
805
+ lib/kramdown/document.rb
806
+
807
+ commit 35b62cdd076fb89c7f9ef78af53ec8229ff536b5
808
+ Author: Thomas Leitner <t_leitner@gmx.at>
809
+ Date: Wed Oct 21 15:28:06 2009 +0200
810
+
811
+ Small updated to syntax spec
812
+
813
+ doc/syntax.page
814
+
815
+ commit 2da8d4841b43e8ba5633e1dee47d3da2ae28b0b0
816
+ Author: Thomas Leitner <t_leitner@gmx.at>
817
+ Date: Wed Oct 21 08:21:58 2009 +0200
818
+
819
+ Updated span level element testcases
820
+
821
+ test/testcases/codespans/errors.html
822
+ test/testcases/codespans/errors.text
823
+ test/testcases/codespans/normal.html
824
+ test/testcases/codespans/normal.text
825
+ test/testcases/emphases/errors.html
826
+ test/testcases/emphases/errors.text
827
+ test/testcases/emphases/normal.html
828
+ test/testcases/emphases/normal.text
829
+ test/testcases/footnotes/definitions.html
830
+ test/testcases/footnotes/definitions.text
831
+ test/testcases/footnotes/markers.html
832
+ test/testcases/footnotes/markers.text
833
+ test/testcases/html_inline/normal.html
834
+ test/testcases/html_inline/normal.text
835
+ test/testcases/links/imagelinks.html
836
+ test/testcases/links/imagelinks.text
837
+ test/testcases/links/inline.html
838
+ test/testcases/links/inline.text
839
+ test/testcases/links/link_defs.html
840
+ test/testcases/links/link_defs.text
841
+ test/testcases/links/reference.html
842
+ test/testcases/links/reference.text
843
+ test/testcases/span/01_link/imagelinks.html
844
+ test/testcases/span/01_link/imagelinks.text
845
+ test/testcases/span/01_link/inline.html
846
+ test/testcases/span/01_link/inline.text
847
+ test/testcases/span/01_link/link_defs.html
848
+ test/testcases/span/01_link/link_defs.text
849
+ test/testcases/span/01_link/reference.html
850
+ test/testcases/span/01_link/reference.text
851
+ test/testcases/span/02_emphasis/errors.html
852
+ test/testcases/span/02_emphasis/errors.text
853
+ test/testcases/span/02_emphasis/normal.html
854
+ test/testcases/span/02_emphasis/normal.text
855
+ test/testcases/span/03_codespan/errors.html
856
+ test/testcases/span/03_codespan/errors.text
857
+ test/testcases/span/03_codespan/normal.html
858
+ test/testcases/span/03_codespan/normal.text
859
+ test/testcases/span/04_footnote/definitions.html
860
+ test/testcases/span/04_footnote/definitions.text
861
+ test/testcases/span/04_footnote/markers.html
862
+ test/testcases/span/04_footnote/markers.text
863
+ test/testcases/span/05_html/normal.html
864
+ test/testcases/span/05_html/normal.text
865
+
866
+ commit 94f5780edc4baa0e2ae7ec0924a9012675b8a1e5
867
+ Author: Thomas Leitner <t_leitner@gmx.at>
868
+ Date: Wed Oct 21 07:55:43 2009 +0200
869
+
870
+ Updated ALD, block IAL testcases and added simple extension block test case
871
+
872
+ test/testcases/attribute_lists/ald.html
873
+ test/testcases/attribute_lists/ald.text
874
+ test/testcases/attribute_lists/ial_block.html
875
+ test/testcases/attribute_lists/ial_block.text
876
+ test/testcases/block/10_ald/simple.html
877
+ test/testcases/block/10_ald/simple.text
878
+ test/testcases/block/11_ial/simple.html
879
+ test/testcases/block/11_ial/simple.text
880
+ test/testcases/block/12_extension/comment.html
881
+ test/testcases/block/12_extension/comment.text
882
+
883
+ commit 774cefd0bc6ad28a7f1ea6c675e7e1ee5fbc2279
884
+ Author: Thomas Leitner <t_leitner@gmx.at>
885
+ Date: Wed Oct 21 07:41:48 2009 +0200
886
+
887
+ Some more updates to syntax spec
888
+
889
+ * Reviewed the span level elements and slightly updated their spec
890
+ * Add block level element for defining extension blocks
891
+
892
+ doc/syntax.page
893
+
894
+ commit 2e4c49c63883dec300beaa85c5346551a398cd78
895
+ Author: Thomas Leitner <t_leitner@gmx.at>
896
+ Date: Mon Oct 19 18:22:19 2009 +0200
897
+
898
+ Updated paragraph test cases
899
+
900
+ test/testcases/block/03_paragraph/indented.html
901
+ test/testcases/block/03_paragraph/indented.text
902
+
903
+ commit 77be09026314e7441cb9517f0d7f529532cbda4f
904
+ Author: Thomas Leitner <t_leitner@gmx.at>
905
+ Date: Mon Oct 19 18:21:30 2009 +0200
906
+
907
+ Updated block html test cases
908
+
909
+ test/testcases/block/09_html/auto_parse_block_html.html
910
+ test/testcases/block/09_html/auto_parse_block_html.options
911
+ test/testcases/block/09_html/auto_parse_block_html.text
912
+ test/testcases/block/09_html/comment.html
913
+ test/testcases/block/09_html/comment.text
914
+ test/testcases/block/09_html/filtered_html.html
915
+ test/testcases/block/09_html/filtered_html.options
916
+ test/testcases/block/09_html/filtered_html.text
917
+ test/testcases/block/09_html/html_and_codeblocks.html
918
+ test/testcases/block/09_html/html_and_codeblocks.options
919
+ test/testcases/block/09_html/html_and_codeblocks.text
920
+ test/testcases/block/09_html/invalid_html_1.html
921
+ test/testcases/block/09_html/invalid_html_1.text
922
+ test/testcases/block/09_html/invalid_html_2.html
923
+ test/testcases/block/09_html/invalid_html_2.text
924
+ test/testcases/block/09_html/processing_instruction.html
925
+ test/testcases/block/09_html/processing_instruction.text
926
+ test/testcases/block/09_html/simple.html
927
+ test/testcases/block/09_html/simple.options
928
+ test/testcases/block/09_html/simple.text
929
+ test/testcases/html_blocks/auto_parse_block_html.html
930
+ test/testcases/html_blocks/auto_parse_block_html.options
931
+ test/testcases/html_blocks/auto_parse_block_html.text
932
+ test/testcases/html_blocks/comment.html
933
+ test/testcases/html_blocks/comment.text
934
+ test/testcases/html_blocks/filtered_html.html
935
+ test/testcases/html_blocks/filtered_html.options
936
+ test/testcases/html_blocks/filtered_html.text
937
+ test/testcases/html_blocks/html_and_codeblocks.html
938
+ test/testcases/html_blocks/html_and_codeblocks.options
939
+ test/testcases/html_blocks/html_and_codeblocks.text
940
+ test/testcases/html_blocks/invalid_html_1.html
941
+ test/testcases/html_blocks/invalid_html_1.text
942
+ test/testcases/html_blocks/invalid_html_2.html
943
+ test/testcases/html_blocks/invalid_html_2.text
944
+ test/testcases/html_blocks/processing_instruction.html
945
+ test/testcases/html_blocks/processing_instruction.text
946
+ test/testcases/html_blocks/simple.html
947
+ test/testcases/html_blocks/simple.options
948
+ test/testcases/html_blocks/simple.text
949
+
950
+ commit 621c4d49878b3ab7d5756b8d3eb1e1b8a1032bec
951
+ Author: Thomas Leitner <t_leitner@gmx.at>
952
+ Date: Mon Oct 19 18:23:15 2009 +0200
953
+
954
+ Modifications regarding paragraphs and HTML blocks
955
+
956
+ * Code blocks cannot directly follow paragraphs anymore, there needs
957
+ to be a blank line between them
958
+ * HTML blocks are now better defined
959
+
960
+ doc/syntax.page
961
+
962
+ commit 5dfab8e7da0c4d6d5027277b5c7a5741ff558529
963
+ Author: Thomas Leitner <t_leitner@gmx.at>
964
+ Date: Fri Oct 16 21:20:21 2009 +0200
965
+
966
+ Updated test cases
967
+
968
+ * Moved block test cases into block/ sub directory
969
+ * Added test cases for blank lines and EOB marker
970
+ * Adjusted test cases to comply to specification
971
+
972
+ test/testcases/block/01_blank_line/spaces.html
973
+ test/testcases/block/01_blank_line/spaces.text
974
+ test/testcases/block/01_blank_line/tabs.html
975
+ test/testcases/block/01_blank_line/tabs.text
976
+ test/testcases/block/02_eob/beginning.html
977
+ test/testcases/block/02_eob/beginning.text
978
+ test/testcases/block/02_eob/end.html
979
+ test/testcases/block/02_eob/end.text
980
+ test/testcases/block/02_eob/middle.html
981
+ test/testcases/block/02_eob/middle.text
982
+ test/testcases/block/03_paragraph/indented.html
983
+ test/testcases/block/03_paragraph/indented.text
984
+ test/testcases/block/03_paragraph/no_newline_at_end.html
985
+ test/testcases/block/03_paragraph/no_newline_at_end.text
986
+ test/testcases/block/03_paragraph/one_para.html
987
+ test/testcases/block/03_paragraph/one_para.text
988
+ test/testcases/block/03_paragraph/two_para.html
989
+ test/testcases/block/03_paragraph/two_para.text
990
+ test/testcases/block/04_header/atx_header.html
991
+ test/testcases/block/04_header/atx_header.text
992
+ test/testcases/block/04_header/atx_header_no_newline_at_end.html
993
+ test/testcases/block/04_header/atx_header_no_newline_at_end.text
994
+ test/testcases/block/04_header/setext_header.html
995
+ test/testcases/block/04_header/setext_header.text
996
+ test/testcases/block/04_header/setext_header_no_newline_at_end.html
997
+ test/testcases/block/04_header/setext_header_no_newline_at_end.text
998
+ test/testcases/block/04_header/with_auto_ids.html
999
+ test/testcases/block/04_header/with_auto_ids.options
1000
+ test/testcases/block/04_header/with_auto_ids.text
1001
+ test/testcases/block/05_blockquote/indented.html
1002
+ test/testcases/block/05_blockquote/indented.text
1003
+ test/testcases/block/05_blockquote/nested.html
1004
+ test/testcases/block/05_blockquote/nested.text
1005
+ test/testcases/block/05_blockquote/no_newline_at_end.html
1006
+ test/testcases/block/05_blockquote/no_newline_at_end.text
1007
+ test/testcases/block/05_blockquote/only_first_quoted.html
1008
+ test/testcases/block/05_blockquote/only_first_quoted.text
1009
+ test/testcases/block/05_blockquote/with_code_blocks.html
1010
+ test/testcases/block/05_blockquote/with_code_blocks.text
1011
+ test/testcases/block/06_codeblock/no_newline_at_end.html
1012
+ test/testcases/block/06_codeblock/no_newline_at_end.text
1013
+ test/testcases/block/06_codeblock/normal.html
1014
+ test/testcases/block/06_codeblock/normal.text
1015
+ test/testcases/block/06_codeblock/tilde_syntax.html
1016
+ test/testcases/block/06_codeblock/tilde_syntax.text
1017
+ test/testcases/block/06_codeblock/with_blank_line.html
1018
+ test/testcases/block/06_codeblock/with_blank_line.text
1019
+ test/testcases/block/06_codeblock/with_eob_marker.html
1020
+ test/testcases/block/06_codeblock/with_eob_marker.text
1021
+ test/testcases/block/07_horizontal_rule/normal.html
1022
+ test/testcases/block/07_horizontal_rule/normal.text
1023
+ test/testcases/block/08_list/escaping.html
1024
+ test/testcases/block/08_list/escaping.text
1025
+ test/testcases/block/08_list/list_and_hr.html
1026
+ test/testcases/block/08_list/list_and_hr.text
1027
+ test/testcases/block/08_list/list_and_others.html
1028
+ test/testcases/block/08_list/list_and_others.text
1029
+ test/testcases/block/08_list/mixed.html
1030
+ test/testcases/block/08_list/mixed.text
1031
+ test/testcases/block/08_list/nested.html
1032
+ test/testcases/block/08_list/nested.text
1033
+ test/testcases/block/08_list/other_first_element.html
1034
+ test/testcases/block/08_list/other_first_element.text
1035
+ test/testcases/block/08_list/simple_ol.html
1036
+ test/testcases/block/08_list/simple_ol.text
1037
+ test/testcases/block/08_list/simple_ul.html
1038
+ test/testcases/block/08_list/simple_ul.text
1039
+ test/testcases/block/08_list/single_item.html
1040
+ test/testcases/block/08_list/single_item.text
1041
+ test/testcases/block/08_list/special_cases.html
1042
+ test/testcases/block/08_list/special_cases.text
1043
+ test/testcases/blockquotes/indented.html
1044
+ test/testcases/blockquotes/indented.text
1045
+ test/testcases/blockquotes/nested.html
1046
+ test/testcases/blockquotes/nested.text
1047
+ test/testcases/blockquotes/no_newline_at_end.html
1048
+ test/testcases/blockquotes/no_newline_at_end.text
1049
+ test/testcases/blockquotes/only_first_quoted.html
1050
+ test/testcases/blockquotes/only_first_quoted.text
1051
+ test/testcases/blockquotes/with_code_blocks.html
1052
+ test/testcases/blockquotes/with_code_blocks.text
1053
+ test/testcases/codeblocks/no_newline_at_end.html
1054
+ test/testcases/codeblocks/no_newline_at_end.text
1055
+ test/testcases/codeblocks/normal.html
1056
+ test/testcases/codeblocks/normal.text
1057
+ test/testcases/codeblocks/tilde_syntax.html
1058
+ test/testcases/codeblocks/tilde_syntax.text
1059
+ test/testcases/codeblocks/with_blank_line.html
1060
+ test/testcases/codeblocks/with_blank_line.text
1061
+ test/testcases/codeblocks/with_eob_marker.html
1062
+ test/testcases/codeblocks/with_eob_marker.text
1063
+ test/testcases/headers/atx_header.html
1064
+ test/testcases/headers/atx_header.text
1065
+ test/testcases/headers/setext_header.html
1066
+ test/testcases/headers/setext_header.text
1067
+ test/testcases/headers/with_auto_ids.html
1068
+ test/testcases/headers/with_auto_ids.options
1069
+ test/testcases/headers/with_auto_ids.text
1070
+ test/testcases/horizontal_rules/normal.html
1071
+ test/testcases/horizontal_rules/normal.text
1072
+ test/testcases/lists/escaping.html
1073
+ test/testcases/lists/escaping.text
1074
+ test/testcases/lists/list_and_hr.html
1075
+ test/testcases/lists/list_and_hr.text
1076
+ test/testcases/lists/list_and_others.html
1077
+ test/testcases/lists/list_and_others.text
1078
+ test/testcases/lists/mixed.html
1079
+ test/testcases/lists/mixed.text
1080
+ test/testcases/lists/nested.html
1081
+ test/testcases/lists/nested.text
1082
+ test/testcases/lists/other_first_element.html
1083
+ test/testcases/lists/other_first_element.text
1084
+ test/testcases/lists/simple_ol.html
1085
+ test/testcases/lists/simple_ol.text
1086
+ test/testcases/lists/simple_ul.html
1087
+ test/testcases/lists/simple_ul.text
1088
+ test/testcases/lists/single_item.html
1089
+ test/testcases/lists/single_item.text
1090
+ test/testcases/lists/special_cases.html
1091
+ test/testcases/lists/special_cases.text
1092
+ test/testcases/paragraphs/indented.html
1093
+ test/testcases/paragraphs/indented.text
1094
+ test/testcases/paragraphs/no_newline_at_end.html
1095
+ test/testcases/paragraphs/no_newline_at_end.text
1096
+ test/testcases/paragraphs/one_para.html
1097
+ test/testcases/paragraphs/one_para.text
1098
+ test/testcases/paragraphs/two_para.html
1099
+ test/testcases/paragraphs/two_para.text
1100
+
1101
+ commit 8145fadea1fb30db0ff9841770fea24617882172
1102
+ Author: Thomas Leitner <t_leitner@gmx.at>
1103
+ Date: Fri Oct 16 21:10:19 2009 +0200
1104
+
1105
+ Updated syntax page
1106
+
1107
+ doc/syntax.page
1108
+
1109
+ commit 8c036139cdb1af146b2d60ddcf3c02c80999545c
1110
+ Author: Thomas Leitner <t_leitner@gmx.at>
1111
+ Date: Tue Mar 3 16:25:47 2009 +0100
1112
+
1113
+ Restructured internals to allow adding of arbitrary block/span parsers
1114
+
1115
+ lib/kramdown.rb
1116
+ lib/kramdown/parser.rb
1117
+ lib/kramdown/parser/html.rb
1118
+ lib/kramdown/parser/registry.rb
1119
+
1120
+ commit 14cabf088d0543e978b81ff009a7d6d8121348b9
1121
+ Author: Thomas Leitner <t_leitner@gmx.at>
1122
+ Date: Mon Feb 23 17:33:54 2009 +0100
1123
+
1124
+ First version of better HTML parser
1125
+
1126
+ - HTML parser now supports basic markdown in HTML block
1127
+ - Ruby 1.9 compatible
1128
+
1129
+ lib/kramdown.rb
1130
+ lib/kramdown/converter.rb
1131
+ lib/kramdown/parser.rb
1132
+ lib/kramdown/parser/html.rb
1133
+ test/run_tests.rb
1134
+ test/testcases/autolinks/url_links.html
1135
+ test/testcases/html_blocks/auto_parse_block_html.html
1136
+ test/testcases/html_blocks/auto_parse_block_html.options
1137
+ test/testcases/html_blocks/auto_parse_block_html.text
1138
+ test/testcases/html_blocks/filtered_html.html
1139
+ test/testcases/html_blocks/filtered_html.options
1140
+ test/testcases/html_blocks/filtered_html.text
1141
+ test/testcases/html_blocks/html_and_codeblocks.options
1142
+ test/testcases/html_blocks/processing_instruction.html
1143
+ test/testcases/html_blocks/processing_instruction.text
1144
+ test/testcases/html_blocks/simple.html
1145
+ test/testcases/html_blocks/simple.options
1146
+ test/testcases/html_blocks/simple.text
1147
+ test/testcases/html_inline/normal.html
1148
+
1149
+ commit 3d679e402274028fa79083521ea2fa6b44236306
1150
+ Author: Thomas Leitner <t_leitner@gmx.at>
1151
+ Date: Wed Jan 14 06:25:01 2009 +0100
1152
+
1153
+ Small adjustment in the handling of line breaks
1154
+
1155
+ doc/syntax.page
1156
+ lib/kramdown/parser.rb
1157
+ test/testcases/line_breaks/normal.html
1158
+ test/testcases/line_breaks/normal.text
1159
+
1160
+ commit 022038a02a37a602835e6d41a106c4390038593d
1161
+ Author: Thomas Leitner <t_leitner@gmx.at>
1162
+ Date: Fri Dec 26 10:50:59 2008 +0100
1163
+
1164
+ Fixed problem with auto header ids and adjusted their format
1165
+
1166
+ Adjusted format of auto header ids to be more similar to those of Pandoc.
1167
+
1168
+ Fixed problem with empty IDs and with duplicate IDs.
1169
+
1170
+ doc/syntax.page
1171
+ lib/kramdown/parser.rb
1172
+ test/testcases/headers/with_auto_ids.html
1173
+ test/testcases/headers/with_auto_ids.text
1174
+
1175
+ commit b9c0f9ebf46dda10ba36e2a7e1ac2df7be30037d
1176
+ Author: Thomas Leitner <t_leitner@gmx.at>
1177
+ Date: Fri Dec 26 10:13:19 2008 +0100
1178
+
1179
+ Implemented support for footnotes
1180
+
1181
+ doc/syntax.page
1182
+ lib/kramdown.rb
1183
+ lib/kramdown/converter.rb
1184
+ lib/kramdown/parser.rb
1185
+ misc/default.css
1186
+ test/testcases/footnotes/definitions.html
1187
+ test/testcases/footnotes/definitions.text
1188
+ test/testcases/footnotes/markers.html
1189
+ test/testcases/footnotes/markers.text
1190
+
1191
+ commit 196ed6c9709315c976d7174d6d9fb662a082c135
1192
+ Author: Thomas Leitner <t_leitner@gmx.at>
1193
+ Date: Sun Dec 21 09:21:53 2008 +0100
1194
+
1195
+ Fixed small bug in list conversion
1196
+
1197
+ lib/kramdown/converter.rb
1198
+ test/testcases/lists/simple_ul.html
1199
+ test/testcases/lists/simple_ul.text
1200
+
1201
+ commit ee6695d662ac923d8a1cd83470d23a329829c5a6
1202
+ Author: Thomas Leitner <t_leitner@gmx.at>
1203
+ Date: Fri Dec 19 19:47:33 2008 +0100
1204
+
1205
+ Implemented attribute list definitions and inline attribute lists
1206
+
1207
+ Rakefile
1208
+ doc/syntax.page
1209
+ lib/kramdown.rb
1210
+ lib/kramdown/converter.rb
1211
+ lib/kramdown/parser.rb
1212
+ test/testcases/attribute_lists/ald.html
1213
+ test/testcases/attribute_lists/ald.text
1214
+ test/testcases/attribute_lists/ial_block.html
1215
+ test/testcases/attribute_lists/ial_block.text
1216
+ test/testcases/attribute_lists/ial_span.html
1217
+ test/testcases/attribute_lists/ial_span.text
1218
+
1219
+ commit b5e5c5b1112d87d78c5e701e42a1ebdcc139b23f
1220
+ Author: Thomas Leitner <t_leitner@gmx.at>
1221
+ Date: Fri Dec 19 19:25:22 2008 +0100
1222
+
1223
+ Small update to the test cases for horizontal lines
1224
+
1225
+ test/testcases/horizontal_rules/normal.html
1226
+ test/testcases/horizontal_rules/normal.text
1227
+
1228
+ commit a4bbf3ab8cfc5bcf462782f9d63a0d70aa57fe3c
1229
+ Author: Thomas Leitner <t_leitner@gmx.at>
1230
+ Date: Wed Dec 17 07:20:17 2008 +0100
1231
+
1232
+ Small optimization
1233
+
1234
+ Removed not needed regexp, now using result of #check instead
1235
+ of second #scan
1236
+
1237
+ lib/kramdown/parser.rb
1238
+
1239
+ commit 439c3ad4be3bccd155cc1ca61cfc868924a026fe
1240
+ Author: Thomas Leitner <t_leitner@gmx.at>
1241
+ Date: Mon Dec 15 09:17:56 2008 +0100
1242
+
1243
+ Implement automatic header ID generation
1244
+
1245
+ doc/syntax.page
1246
+ lib/kramdown/parser.rb
1247
+ test/test_files.rb
1248
+ test/testcases/headers/with_auto_ids.html
1249
+ test/testcases/headers/with_auto_ids.options
1250
+ test/testcases/headers/with_auto_ids.text
1251
+
1252
+ commit 9b7b33d3a2a961fc07aee968af42798b110e460e
1253
+ Author: Thomas Leitner <t_leitner@gmx.at>
1254
+ Date: Sat Dec 13 09:47:40 2008 +0100
1255
+
1256
+ Small optimization
1257
+
1258
+ lib/kramdown/parser.rb
1259
+
1260
+ commit ee0449065558e02affacfe27ff94c8a00d6e9a62
1261
+ Author: Thomas Leitner <t_leitner@gmx.at>
1262
+ Date: Sat Dec 13 08:54:34 2008 +0100
1263
+
1264
+ Removed rdiscount from benchmark since it will always be faster
1265
+
1266
+ Rakefile
1267
+
1268
+ commit ff919700c1377407fe1651a1c7152a227c54da15
1269
+ Author: Thomas Leitner <t_leitner@gmx.at>
1270
+ Date: Fri Dec 12 09:15:01 2008 +0100
1271
+
1272
+ Small refactoring and API documentation update
1273
+
1274
+ Rakefile
1275
+ lib/kramdown.rb
1276
+ lib/kramdown/converter.rb
1277
+ lib/kramdown/parser.rb
1278
+ test/testcases/codespans/normal.html
1279
+ test/testcases/codespans/normal.text
1280
+ test/testcases/links/inline.html
1281
+ test/testcases/links/inline.text
1282
+
1283
+ commit f498f888af8f10dccfffd6621ce46068aab980f2
1284
+ Author: Thomas Leitner <t_leitner@gmx.at>
1285
+ Date: Tue Dec 9 07:24:55 2008 +0100
1286
+
1287
+ Initial import
1288
+
1289
+ COPYING
1290
+ GPL
1291
+ Rakefile
1292
+ bin/kramdown
1293
+ doc/documentation.page
1294
+ doc/syntax.page
1295
+ doc/tests.page
1296
+ lib/kramdown.rb
1297
+ lib/kramdown/converter.rb
1298
+ lib/kramdown/parser.rb
1299
+ misc/default.css
1300
+ misc/default.template
1301
+ misc/htmldoc.metainfo
1302
+ misc/htmldoc.virtual
1303
+ misc/images/arrow.gif
1304
+ misc/images/error.gif
1305
+ misc/images/exclamation.gif
1306
+ misc/images/headerbg.jpg
1307
+ misc/images/information.gif
1308
+ misc/images/quote.gif
1309
+ setup.rb
1310
+ test/run_tests.rb
1311
+ test/test_files.rb
1312
+ test/testcases/autolinks/url_links.html
1313
+ test/testcases/autolinks/url_links.text
1314
+ test/testcases/blockquotes/indented.html
1315
+ test/testcases/blockquotes/indented.text
1316
+ test/testcases/blockquotes/nested.html
1317
+ test/testcases/blockquotes/nested.text
1318
+ test/testcases/blockquotes/no_newline_at_end.html
1319
+ test/testcases/blockquotes/no_newline_at_end.text
1320
+ test/testcases/blockquotes/only_first_quoted.html
1321
+ test/testcases/blockquotes/only_first_quoted.text
1322
+ test/testcases/blockquotes/with_code_blocks.html
1323
+ test/testcases/blockquotes/with_code_blocks.text
1324
+ test/testcases/codeblocks/no_newline_at_end.html
1325
+ test/testcases/codeblocks/no_newline_at_end.text
1326
+ test/testcases/codeblocks/normal.html
1327
+ test/testcases/codeblocks/normal.text
1328
+ test/testcases/codeblocks/tilde_syntax.html
1329
+ test/testcases/codeblocks/tilde_syntax.text
1330
+ test/testcases/codeblocks/with_blank_line.html
1331
+ test/testcases/codeblocks/with_blank_line.text
1332
+ test/testcases/codeblocks/with_eob_marker.html
1333
+ test/testcases/codeblocks/with_eob_marker.text
1334
+ test/testcases/codespans/errors.html
1335
+ test/testcases/codespans/errors.text
1336
+ test/testcases/codespans/normal.html
1337
+ test/testcases/codespans/normal.text
1338
+ test/testcases/email_header/normal_header.html
1339
+ test/testcases/email_header/normal_header.text
1340
+ test/testcases/emphases/errors.html
1341
+ test/testcases/emphases/errors.text
1342
+ test/testcases/emphases/normal.html
1343
+ test/testcases/emphases/normal.text
1344
+ test/testcases/headers/atx_header.html
1345
+ test/testcases/headers/atx_header.text
1346
+ test/testcases/headers/setext_header.html
1347
+ test/testcases/headers/setext_header.text
1348
+ test/testcases/horizontal_rules/normal.html
1349
+ test/testcases/horizontal_rules/normal.text
1350
+ test/testcases/html_blocks/comment.html
1351
+ test/testcases/html_blocks/comment.text
1352
+ test/testcases/html_blocks/html_and_codeblocks.html
1353
+ test/testcases/html_blocks/html_and_codeblocks.text
1354
+ test/testcases/html_blocks/invalid_html_1.html
1355
+ test/testcases/html_blocks/invalid_html_1.text
1356
+ test/testcases/html_blocks/invalid_html_2.html
1357
+ test/testcases/html_blocks/invalid_html_2.text
1358
+ test/testcases/html_blocks/processing_instruction.html
1359
+ test/testcases/html_blocks/processing_instruction.text
1360
+ test/testcases/html_blocks/simple.html
1361
+ test/testcases/html_blocks/simple.text
1362
+ test/testcases/html_inline/normal.html
1363
+ test/testcases/html_inline/normal.text
1364
+ test/testcases/line_breaks/normal.html
1365
+ test/testcases/line_breaks/normal.text
1366
+ test/testcases/links/imagelinks.html
1367
+ test/testcases/links/imagelinks.text
1368
+ test/testcases/links/inline.html
1369
+ test/testcases/links/inline.text
1370
+ test/testcases/links/link_defs.html
1371
+ test/testcases/links/link_defs.text
1372
+ test/testcases/links/reference.html
1373
+ test/testcases/links/reference.text
1374
+ test/testcases/lists/escaping.html
1375
+ test/testcases/lists/escaping.text
1376
+ test/testcases/lists/list_and_hr.html
1377
+ test/testcases/lists/list_and_hr.text
1378
+ test/testcases/lists/list_and_others.html
1379
+ test/testcases/lists/list_and_others.text
1380
+ test/testcases/lists/mixed.html
1381
+ test/testcases/lists/mixed.text
1382
+ test/testcases/lists/nested.html
1383
+ test/testcases/lists/nested.text
1384
+ test/testcases/lists/other_first_element.html
1385
+ test/testcases/lists/other_first_element.text
1386
+ test/testcases/lists/simple_ol.html
1387
+ test/testcases/lists/simple_ol.text
1388
+ test/testcases/lists/simple_ul.html
1389
+ test/testcases/lists/simple_ul.text
1390
+ test/testcases/lists/single_item.html
1391
+ test/testcases/lists/single_item.text
1392
+ test/testcases/lists/special_cases.html
1393
+ test/testcases/lists/special_cases.text
1394
+ test/testcases/paragraphs/indented.html
1395
+ test/testcases/paragraphs/indented.text
1396
+ test/testcases/paragraphs/no_newline_at_end.html
1397
+ test/testcases/paragraphs/no_newline_at_end.text
1398
+ test/testcases/paragraphs/one_para.html
1399
+ test/testcases/paragraphs/one_para.text
1400
+ test/testcases/paragraphs/two_para.html
1401
+ test/testcases/paragraphs/two_para.text
1402
+ test/testcases/text_substitutions/ampersands.html
1403
+ test/testcases/text_substitutions/ampersands.text
1404
+ test/testcases/text_substitutions/greaterthan.html
1405
+ test/testcases/text_substitutions/greaterthan.text
1406
+ test/testcases/text_substitutions/lowerthan.html
1407
+ test/testcases/text_substitutions/lowerthan.text
1408
+ website/src/default.template
1409
+ website/src/images/feed.gif
1410
+ website/src/index.page
1411
+ website/src/metainfo
1412
+ website/src/news/default.template
1413
+ website/src/news/index.page
1414
+ website/src/news/news.feed
1415
+ website/src/news/release_0_1_0.page
1416
+ website/src/virtual