kramdown 0.11.0 → 0.12.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 (94) hide show
  1. data/CONTRIBUTERS +1 -1
  2. data/ChangeLog +532 -0
  3. data/README +22 -12
  4. data/Rakefile +9 -8
  5. data/VERSION +1 -1
  6. data/benchmark/benchmark.sh +61 -0
  7. data/benchmark/generate_data.rb +57 -55
  8. data/benchmark/testing.sh +1 -1
  9. data/benchmark/timing.sh +3 -3
  10. data/bin/kramdown +1 -2
  11. data/data/kramdown/document.html +2 -2
  12. data/data/kramdown/document.latex +2 -2
  13. data/doc/default.scss.css +6 -1
  14. data/doc/default.template +1 -1
  15. data/doc/documentation.page +1 -1
  16. data/doc/index.page +9 -7
  17. data/doc/installation.page +2 -3
  18. data/doc/links.markdown +1 -1
  19. data/doc/quickref.page +19 -19
  20. data/doc/syntax.page +117 -98
  21. data/doc/tests.page +8 -7
  22. data/lib/kramdown/compatibility.rb +2 -1
  23. data/lib/kramdown/converter.rb +5 -7
  24. data/lib/kramdown/converter/base.rb +87 -32
  25. data/lib/kramdown/converter/html.rb +134 -122
  26. data/lib/kramdown/converter/kramdown.rb +24 -25
  27. data/lib/kramdown/converter/latex.rb +65 -55
  28. data/lib/kramdown/document.rb +487 -42
  29. data/lib/kramdown/error.rb +3 -0
  30. data/lib/kramdown/options.rb +83 -28
  31. data/lib/kramdown/parser.rb +5 -5
  32. data/lib/kramdown/parser/base.rb +55 -13
  33. data/lib/kramdown/parser/html.rb +83 -71
  34. data/lib/kramdown/parser/kramdown.rb +73 -54
  35. data/lib/kramdown/parser/kramdown/abbreviation.rb +17 -12
  36. data/lib/kramdown/parser/kramdown/autolink.rb +2 -3
  37. data/lib/kramdown/parser/kramdown/blank_line.rb +1 -1
  38. data/lib/kramdown/parser/kramdown/block_boundary.rb +2 -2
  39. data/lib/kramdown/parser/kramdown/blockquote.rb +2 -2
  40. data/lib/kramdown/parser/kramdown/codeblock.rb +5 -2
  41. data/lib/kramdown/parser/kramdown/codespan.rb +1 -2
  42. data/lib/kramdown/parser/kramdown/emphasis.rb +1 -1
  43. data/lib/kramdown/parser/kramdown/escaped_chars.rb +1 -1
  44. data/lib/kramdown/parser/kramdown/extensions.rb +204 -0
  45. data/lib/kramdown/parser/kramdown/footnote.rb +7 -7
  46. data/lib/kramdown/parser/kramdown/header.rb +4 -2
  47. data/lib/kramdown/parser/kramdown/horizontal_rule.rb +1 -1
  48. data/lib/kramdown/parser/kramdown/html.rb +39 -45
  49. data/lib/kramdown/parser/kramdown/link.rb +19 -29
  50. data/lib/kramdown/parser/kramdown/list.rb +13 -13
  51. data/lib/kramdown/parser/kramdown/math.rb +1 -1
  52. data/lib/kramdown/parser/kramdown/paragraph.rb +5 -4
  53. data/lib/kramdown/parser/kramdown/smart_quotes.rb +1 -1
  54. data/lib/kramdown/parser/kramdown/table.rb +51 -12
  55. data/lib/kramdown/parser/markdown.rb +69 -0
  56. data/lib/kramdown/utils.rb +2 -2
  57. data/lib/kramdown/utils/entities.rb +10 -1
  58. data/lib/kramdown/utils/html.rb +22 -11
  59. data/lib/kramdown/utils/ordered_hash.rb +44 -40
  60. data/lib/kramdown/version.rb +1 -1
  61. data/man/man1/kramdown.1 +31 -4
  62. data/test/testcases/block/08_list/item_ial.html +1 -1
  63. data/test/testcases/block/11_ial/nested.html +11 -0
  64. data/test/testcases/block/11_ial/nested.text +15 -0
  65. data/test/testcases/block/13_definition_list/item_ial.html +1 -1
  66. data/test/testcases/block/14_table/escaping.html +52 -0
  67. data/test/testcases/block/14_table/escaping.text +19 -0
  68. data/test/testcases/block/14_table/simple.html.19 +139 -0
  69. data/test/testcases/block/14_table/simple.text +1 -1
  70. data/test/testcases/block/15_math/normal.html +13 -13
  71. data/test/testcases/block/16_toc/{no_toc_depth.html → no_toc.html} +0 -0
  72. data/test/testcases/block/16_toc/{no_toc_depth.options → no_toc.options} +0 -0
  73. data/test/testcases/block/16_toc/{no_toc_depth.text → no_toc.text} +0 -0
  74. data/test/testcases/block/16_toc/{toc_depth_2.html → toc_levels.html} +4 -4
  75. data/test/testcases/block/16_toc/toc_levels.options +1 -0
  76. data/test/testcases/block/16_toc/{toc_depth_2.text → toc_levels.text} +0 -0
  77. data/test/testcases/span/escaped_chars/normal.html +4 -0
  78. data/test/testcases/span/escaped_chars/normal.text +4 -0
  79. data/test/testcases/span/ial/simple.html +1 -1
  80. data/test/testcases/span/math/normal.html +2 -2
  81. metadata +20 -25
  82. data/benchmark/historic-jruby-1.4.0.dat +0 -7
  83. data/benchmark/historic-ruby-1.8.6.dat +0 -7
  84. data/benchmark/historic-ruby-1.8.7.dat +0 -7
  85. data/benchmark/historic-ruby-1.9.1p243.dat +0 -7
  86. data/benchmark/historic-ruby-1.9.2dev.dat +0 -7
  87. data/benchmark/static-jruby-1.4.0.dat +0 -7
  88. data/benchmark/static-ruby-1.8.6.dat +0 -7
  89. data/benchmark/static-ruby-1.8.7.dat +0 -7
  90. data/benchmark/static-ruby-1.9.1p243.dat +0 -7
  91. data/benchmark/static-ruby-1.9.2dev.dat +0 -7
  92. data/lib/kramdown/parser/kramdown/attribute_list.rb +0 -111
  93. data/lib/kramdown/parser/kramdown/extension.rb +0 -116
  94. data/test/testcases/block/16_toc/toc_depth_2.options +0 -1
@@ -1,5 +1,5 @@
1
1
  Count Name
2
2
  ======= ====
3
- 391 Thomas Leitner <t_leitner@gmx.at>
3
+ 427 Thomas Leitner <t_leitner@gmx.at>
4
4
  3 Ben Armston <ben.armston@googlemail.com>
5
5
  3 Alex Marandon <contact@alexmarandon.com>
data/ChangeLog CHANGED
@@ -1,3 +1,535 @@
1
+ commit 7ac86c467418389f63844c16783157268351f192
2
+ Author: Thomas Leitner <t_leitner@gmx.at>
3
+ Date: Mon Nov 1 09:55:09 2010 +0100
4
+
5
+ Updated website documentation for release
6
+
7
+ doc/img/graph-jruby-1.4.0.png
8
+ doc/img/graph-jruby-1.5.3-249.png
9
+ doc/img/graph-ruby-1.8.5-231.png
10
+ doc/img/graph-ruby-1.8.6-399.png
11
+ doc/img/graph-ruby-1.8.6.png
12
+ doc/img/graph-ruby-1.8.7-249.png
13
+ doc/img/graph-ruby-1.8.7-302.png
14
+ doc/img/graph-ruby-1.8.7.png
15
+ doc/img/graph-ruby-1.9.1p243.png
16
+ doc/img/graph-ruby-1.9.2dev.png
17
+ doc/img/graph-ruby-1.9.2p0-0.png
18
+ doc/index.page
19
+ doc/installation.page
20
+ doc/news/release_0_12_0.page
21
+ doc/tests.page
22
+
23
+ commit 546a0eb0ce89d33dbd22e4453c12b482f703effe
24
+ Author: Thomas Leitner <t_leitner@gmx.at>
25
+ Date: Mon Nov 1 09:06:44 2010 +0100
26
+
27
+ Finished documenting all element types
28
+
29
+ lib/kramdown/document.rb
30
+
31
+ commit 029e20fe764de22e47c1bf4839271bbe11f2cba8
32
+ Author: Thomas Leitner <t_leitner@gmx.at>
33
+ Date: Mon Nov 1 08:54:18 2010 +0100
34
+
35
+ Removed parsing of doctype in HTML parser
36
+
37
+ lib/kramdown/converter/html.rb
38
+ lib/kramdown/converter/kramdown.rb
39
+ lib/kramdown/converter/latex.rb
40
+ lib/kramdown/document.rb
41
+ lib/kramdown/parser/html.rb
42
+
43
+ commit ede695f39b840062c68f72bc39fd0637b2505033
44
+ Author: Thomas Leitner <t_leitner@gmx.at>
45
+ Date: Mon Nov 1 08:39:33 2010 +0100
46
+
47
+ Renamed HTML element option parse_type to content_model
48
+
49
+ The name content_model is better suited than parse_type since this option
50
+ describes what kind of elements may be nested.
51
+
52
+ lib/kramdown/converter/html.rb
53
+ lib/kramdown/converter/kramdown.rb
54
+ lib/kramdown/parser/html.rb
55
+ lib/kramdown/parser/kramdown/html.rb
56
+
57
+ commit a9052675c7dcf04f8d44d4b37b18bc1da616d604
58
+ Author: Thomas Leitner <t_leitner@gmx.at>
59
+ Date: Sun Oct 31 08:36:41 2010 +0100
60
+
61
+ Link definitions are not stored on the root element anymore
62
+
63
+ As with ALDs link definitions are not needed after the parsing phase.
64
+ Therefore there is no need to store them in the root element.
65
+
66
+ lib/kramdown/parser/kramdown.rb
67
+ lib/kramdown/parser/kramdown/link.rb
68
+
69
+ commit 05b9d70491f74738f0f55b0901000fb0ba6ac361
70
+ Author: Thomas Leitner <t_leitner@gmx.at>
71
+ Date: Sun Oct 31 08:31:05 2010 +0100
72
+
73
+ ALDs are not stored on the root element anymore
74
+
75
+ ALDs only need to be stored during the parsing phase. Therefore there is
76
+ no need to store them in the root element.
77
+
78
+ lib/kramdown/parser/kramdown.rb
79
+ lib/kramdown/parser/kramdown/extensions.rb
80
+
81
+ commit 7c3311e859216688e7e0d5381030ee1cee724ec9
82
+ Author: Thomas Leitner <t_leitner@gmx.at>
83
+ Date: Sat Oct 30 23:14:56 2010 +0200
84
+
85
+ Updated handling of footnote definition data
86
+
87
+ The footnote definitions were stored apart from the footnotes themselves
88
+ which doesn't make such sense. Now a definition is stored directly in
89
+ the footnote element itself.
90
+
91
+ lib/kramdown/converter/html.rb
92
+ lib/kramdown/converter/kramdown.rb
93
+ lib/kramdown/converter/latex.rb
94
+ lib/kramdown/parser/kramdown.rb
95
+ lib/kramdown/parser/kramdown/footnote.rb
96
+
97
+ commit 37895bc659a62d330aab45c2a4a910a7dcea289c
98
+ Author: Thomas Leitner <t_leitner@gmx.at>
99
+ Date: Sat Oct 30 11:46:55 2010 +0200
100
+
101
+ Removed old and unused option key from HTML footnote generation method
102
+
103
+ lib/kramdown/converter/html.rb
104
+
105
+ commit 69e90ce3a9561b4f59e134cdb3ff3ac8a712c2d2
106
+ Author: Thomas Leitner <t_leitner@gmx.at>
107
+ Date: Sat Oct 30 11:44:26 2010 +0200
108
+
109
+ Utility method Utils::Html#html_attributes now takes a hash as argument
110
+
111
+ It is unnecessary to use an Element as argument when only a hash is
112
+ needed. A consequence of this change is the elimination of the now
113
+ unneeded use of Marshal.dump/Marshal.load.
114
+
115
+ lib/kramdown/converter/html.rb
116
+ lib/kramdown/converter/kramdown.rb
117
+ lib/kramdown/utils/html.rb
118
+
119
+ commit 2f1b73cf55847749fc972ddda4b592c5d60bf50e
120
+ Author: Thomas Leitner <t_leitner@gmx.at>
121
+ Date: Sat Oct 30 10:40:09 2010 +0200
122
+
123
+ Simplified setting of :category element option
124
+
125
+ This option was set on many elements although there was no need to
126
+ because the elements could only be in one category (either :block or
127
+ :span). Therefore this option is now only set on elements where the
128
+ category is not predetermined.
129
+
130
+ lib/kramdown/converter/kramdown.rb
131
+ lib/kramdown/document.rb
132
+ lib/kramdown/parser/html.rb
133
+ lib/kramdown/parser/kramdown.rb
134
+ lib/kramdown/parser/kramdown/math.rb
135
+
136
+ commit b49f61190927ed59093dcd51cf8dbc80d11cb19f
137
+ Author: Thomas Leitner <t_leitner@gmx.at>
138
+ Date: Fri Oct 29 14:58:03 2010 +0200
139
+
140
+ Replaced internal element type :th with type :td
141
+
142
+ lib/kramdown/converter/html.rb
143
+ lib/kramdown/converter/kramdown.rb
144
+ lib/kramdown/converter/latex.rb
145
+ lib/kramdown/parser/html.rb
146
+ lib/kramdown/parser/kramdown/table.rb
147
+
148
+ commit ba21c0a2853df7dac34839d0ec05303304628a9c
149
+ Author: Thomas Leitner <t_leitner@gmx.at>
150
+ Date: Fri Oct 29 14:34:55 2010 +0200
151
+
152
+ Added option latex_headers for customizing LaTeX section heading commands
153
+
154
+ doc/converter/latex.page
155
+ doc/news/release_0_12_0.page
156
+ lib/kramdown/converter/latex.rb
157
+ lib/kramdown/options.rb
158
+
159
+ commit e3fc542dfe245ef0bb518e10b7ad718af46b2a82
160
+ Author: Thomas Leitner <t_leitner@gmx.at>
161
+ Date: Fri Oct 29 09:19:51 2010 +0200
162
+
163
+ Updated the HTML parser/converter to use/output MathJax syntax instead of jsMath syntax
164
+
165
+ doc/converter/html.page
166
+ doc/links.markdown
167
+ doc/news/release_0_12_0.page
168
+ lib/kramdown/converter/html.rb
169
+ lib/kramdown/parser/html.rb
170
+ test/testcases/block/15_math/normal.html
171
+ test/testcases/span/math/normal.html
172
+
173
+ commit 0fdea10a05cf0459fb992521dc331e2fa332222a
174
+ Author: Thomas Leitner <t_leitner@gmx.at>
175
+ Date: Fri Oct 29 09:16:00 2010 +0200
176
+
177
+ Using MathJax instead of jsMath for kramdown homepage
178
+
179
+ Rakefile
180
+ doc/default.template
181
+
182
+ commit accf00478a8e1795de08a292a5636fd8586a80c7
183
+ Author: Thomas Leitner <t_leitner@gmx.at>
184
+ Date: Thu Oct 28 20:48:18 2010 +0200
185
+
186
+ Removed option toc_depth and replaced it with new option toc_levels
187
+
188
+ The option toc_depth only allowed one to specify the end level that
189
+ is used for the toc. In contrast, the new option allows one to specify
190
+ exactly which levels should be used.
191
+
192
+ Closes RF#28672
193
+
194
+ doc/converter/html.page
195
+ doc/news/release_0_12_0.page
196
+ lib/kramdown/converter/base.rb
197
+ lib/kramdown/converter/html.rb
198
+ lib/kramdown/converter/latex.rb
199
+ lib/kramdown/options.rb
200
+ test/testcases/block/16_toc/no_toc.html
201
+ test/testcases/block/16_toc/no_toc.options
202
+ test/testcases/block/16_toc/no_toc.text
203
+ test/testcases/block/16_toc/no_toc_depth.html
204
+ test/testcases/block/16_toc/no_toc_depth.options
205
+ test/testcases/block/16_toc/no_toc_depth.text
206
+ test/testcases/block/16_toc/toc_depth_2.html
207
+ test/testcases/block/16_toc/toc_depth_2.options
208
+ test/testcases/block/16_toc/toc_depth_2.text
209
+ test/testcases/block/16_toc/toc_levels.html
210
+ test/testcases/block/16_toc/toc_levels.options
211
+ test/testcases/block/16_toc/toc_levels.text
212
+
213
+ commit 6615a22dba2e94c997d4f017e8cfdd3d87f2f80d
214
+ Author: Thomas Leitner <t_leitner@gmx.at>
215
+ Date: Wed Oct 27 19:11:02 2010 +0200
216
+
217
+ Updated option handling
218
+
219
+ * Kramdown::Error is used instead of other errors
220
+ * Added possibility to add a block for validating an option value
221
+
222
+ bin/kramdown
223
+ lib/kramdown/options.rb
224
+ man/man1/kramdown.1.erb
225
+
226
+ commit bb1cfa9892f1145e8444739b52606e757836f4e4
227
+ Author: Thomas Leitner <t_leitner@gmx.at>
228
+ Date: Wed Oct 27 07:58:13 2010 +0200
229
+
230
+ Some performance/memory tweaks
231
+
232
+ doc/news/release_0_12_0.page
233
+ lib/kramdown/converter/base.rb
234
+ lib/kramdown/converter/html.rb
235
+ lib/kramdown/converter/kramdown.rb
236
+ lib/kramdown/converter/latex.rb
237
+ lib/kramdown/document.rb
238
+ lib/kramdown/parser/html.rb
239
+ lib/kramdown/parser/kramdown.rb
240
+ lib/kramdown/parser/kramdown/abbreviation.rb
241
+ lib/kramdown/parser/kramdown/autolink.rb
242
+ lib/kramdown/parser/kramdown/blank_line.rb
243
+ lib/kramdown/parser/kramdown/codeblock.rb
244
+ lib/kramdown/parser/kramdown/codespan.rb
245
+ lib/kramdown/parser/kramdown/emphasis.rb
246
+ lib/kramdown/parser/kramdown/extensions.rb
247
+ lib/kramdown/parser/kramdown/header.rb
248
+ lib/kramdown/parser/kramdown/horizontal_rule.rb
249
+ lib/kramdown/parser/kramdown/html.rb
250
+ lib/kramdown/parser/kramdown/link.rb
251
+ lib/kramdown/parser/kramdown/list.rb
252
+ lib/kramdown/parser/kramdown/paragraph.rb
253
+ lib/kramdown/parser/kramdown/smart_quotes.rb
254
+ lib/kramdown/parser/kramdown/table.rb
255
+ lib/kramdown/utils/ordered_hash.rb
256
+
257
+ commit ede2bd7878484ed6eadbb70b58dad3235e1bbfd2
258
+ Author: Thomas Leitner <t_leitner@gmx.at>
259
+ Date: Wed Oct 27 07:23:32 2010 +0200
260
+
261
+ Updated benchmark and testing files
262
+
263
+ * Added benchmark.sh script for automatic testing of multiple
264
+ kramdown version on multiple ruby versions.
265
+ * Updated generate_data.rb for use with benchmark.sh
266
+ * Small updates to testing.sh/timing.sh
267
+
268
+ benchmark/benchmark.sh
269
+ benchmark/generate_data.rb
270
+ benchmark/historic-jruby-1.4.0.dat
271
+ benchmark/historic-ruby-1.8.6.dat
272
+ benchmark/historic-ruby-1.8.7.dat
273
+ benchmark/historic-ruby-1.9.1p243.dat
274
+ benchmark/historic-ruby-1.9.2dev.dat
275
+ benchmark/static-jruby-1.4.0.dat
276
+ benchmark/static-ruby-1.8.6.dat
277
+ benchmark/static-ruby-1.8.7.dat
278
+ benchmark/static-ruby-1.9.1p243.dat
279
+ benchmark/static-ruby-1.9.2dev.dat
280
+ benchmark/testing.sh
281
+ benchmark/timing.sh
282
+
283
+ commit cc76843f2c3bd8ee208e2eed9aa53cbd6b0abf05
284
+ Author: Thomas Leitner <t_leitner@gmx.at>
285
+ Date: Sun Oct 24 11:49:16 2010 +0200
286
+
287
+ Added API documentation for element type
288
+
289
+ lib/kramdown/document.rb
290
+
291
+ commit e76d206de483cfcbdd4bd62210fb84981bdf2d73
292
+ Author: Thomas Leitner <t_leitner@gmx.at>
293
+ Date: Sat Oct 23 11:35:20 2010 +0200
294
+
295
+ Fixed use of renamed module name
296
+
297
+ data/kramdown/document.html
298
+
299
+ commit cd5423f23eb783a2c435e8545a98625cb280f286
300
+ Author: Thomas Leitner <t_leitner@gmx.at>
301
+ Date: Sat Oct 23 11:18:52 2010 +0200
302
+
303
+ Changed parser/converter API to work without a document instance
304
+
305
+ Parsers and converters can now work without the Kramdown::Document class
306
+ which is just provided for convenience. All the needed information is
307
+ stored in the element tree itself. Information that has no direct
308
+ representation as an element is stored in the options of the root
309
+ element (e.g. footnote definitions).
310
+
311
+ The main interface to kramdown, the Kramdown::Document class, was
312
+ internally changed but still has the same API. This means that
313
+ applications that only used this interface will still work after
314
+ updating.
315
+
316
+ data/kramdown/document.html
317
+ data/kramdown/document.latex
318
+ doc/news/release_0_12_0.page
319
+ lib/kramdown/converter.rb
320
+ lib/kramdown/converter/base.rb
321
+ lib/kramdown/converter/html.rb
322
+ lib/kramdown/converter/kramdown.rb
323
+ lib/kramdown/converter/latex.rb
324
+ lib/kramdown/document.rb
325
+ lib/kramdown/parser/base.rb
326
+ lib/kramdown/parser/html.rb
327
+ lib/kramdown/parser/kramdown.rb
328
+ lib/kramdown/parser/kramdown/abbreviation.rb
329
+ lib/kramdown/parser/kramdown/extensions.rb
330
+ lib/kramdown/parser/kramdown/footnote.rb
331
+ lib/kramdown/parser/kramdown/html.rb
332
+ lib/kramdown/parser/kramdown/link.rb
333
+ lib/kramdown/parser/markdown.rb
334
+ lib/kramdown/utils.rb
335
+ lib/kramdown/utils/html.rb
336
+
337
+ commit fa0af42fd6963912c23770113e92bb09fa7641e1
338
+ Author: Thomas Leitner <t_leitner@gmx.at>
339
+ Date: Fri Oct 22 16:00:06 2010 +0200
340
+
341
+ Updated API documentation
342
+
343
+ README
344
+ lib/kramdown/compatibility.rb
345
+ lib/kramdown/converter.rb
346
+ lib/kramdown/converter/base.rb
347
+ lib/kramdown/converter/html.rb
348
+ lib/kramdown/converter/latex.rb
349
+ lib/kramdown/error.rb
350
+ lib/kramdown/options.rb
351
+ lib/kramdown/parser.rb
352
+ lib/kramdown/parser/base.rb
353
+ lib/kramdown/parser/html.rb
354
+ lib/kramdown/parser/kramdown.rb
355
+ lib/kramdown/parser/markdown.rb
356
+ lib/kramdown/utils.rb
357
+ lib/kramdown/utils/entities.rb
358
+ lib/kramdown/utils/html.rb
359
+
360
+ commit d98b365ff2e5ee18dca089a89e472193f2fb0367
361
+ Author: Thomas Leitner <t_leitner@gmx.at>
362
+ Date: Thu Oct 21 20:03:43 2010 +0200
363
+
364
+ Fixed bug RF#28660: line break in otherwise empty paragraph resulted in stack trace in kramdown converter
365
+
366
+ doc/news/release_0_12_0.page
367
+ lib/kramdown/converter/kramdown.rb
368
+
369
+ commit af8e4a76df1b585dbc1d0a753d9c08146a2bba16
370
+ Author: Thomas Leitner <t_leitner@gmx.at>
371
+ Date: Wed Oct 20 08:32:00 2010 +0200
372
+
373
+ Small fix for rdoc tasks
374
+
375
+ Rakefile
376
+
377
+ commit bd6726e5fff714a3f43d4f310dac056f48b0eb34
378
+ Author: Thomas Leitner <t_leitner@gmx.at>
379
+ Date: Wed Oct 20 08:27:56 2010 +0200
380
+
381
+ Website and API documentation update
382
+
383
+ * Added more information on elements that may not be hard-wrapped
384
+ * block level -> block-level, span level -> span-level
385
+ * Fixed spelling errors
386
+
387
+ doc/parser/html.page
388
+ doc/quickref.page
389
+ doc/syntax.page
390
+ lib/kramdown/options.rb
391
+ lib/kramdown/parser/kramdown.rb
392
+ lib/kramdown/parser/kramdown/html.rb
393
+
394
+ commit 0a6971ea78a1bc35089afabe09b1273b7173b991
395
+ Author: Thomas Leitner <t_leitner@gmx.at>
396
+ Date: Wed Oct 20 08:23:23 2010 +0200
397
+
398
+ Small website style fix for definition lists
399
+
400
+ doc/default.scss.css
401
+
402
+ commit e2630bc2f40f9e03d3d885dd8b9427ce3f651fee
403
+ Author: Thomas Leitner <t_leitner@gmx.at>
404
+ Date: Sat Oct 16 09:15:26 2010 +0200
405
+
406
+ Pipe characters in code spans in tables don't need to be escaped anymore
407
+
408
+ doc/news/release_0_12_0.page
409
+ doc/syntax.page
410
+ lib/kramdown/converter/kramdown.rb
411
+ lib/kramdown/parser/kramdown.rb
412
+ lib/kramdown/parser/kramdown/table.rb
413
+ test/testcases/block/14_table/escaping.html
414
+ test/testcases/block/14_table/escaping.text
415
+ test/testcases/block/14_table/simple.text
416
+
417
+ commit f735bf1ce30ce95cc8d45be56afbe535e554119c
418
+ Author: Thomas Leitner <t_leitner@gmx.at>
419
+ Date: Tue Oct 12 16:53:33 2010 +0200
420
+
421
+ Fixed two bugs with regard to block IALs
422
+
423
+ * a block IAL before an HTML element was ignored
424
+ * block IALs were sometimes falsely applied to nested elements
425
+
426
+ doc/news/release_0_12_0.page
427
+ lib/kramdown/parser/kramdown.rb
428
+ lib/kramdown/parser/kramdown/html.rb
429
+ test/testcases/block/11_ial/nested.html
430
+ test/testcases/block/11_ial/nested.text
431
+
432
+ commit 711a5904ac81b3af88952ca336cf7c2518c1beb7
433
+ Author: Thomas Leitner <t_leitner@gmx.at>
434
+ Date: Tue Oct 12 16:40:10 2010 +0200
435
+
436
+ Option entity_output is now respected when outputting TDs in HTML converter
437
+
438
+ doc/news/release_0_12_0.page
439
+ lib/kramdown/converter/html.rb
440
+ test/testcases/block/14_table/simple.html.19
441
+
442
+ commit 35185369f1c97bdd69736145a6dded043227c4e1
443
+ Author: Thomas Leitner <t_leitner@gmx.at>
444
+ Date: Tue Oct 5 08:57:42 2010 +0200
445
+
446
+ Invalid span IALs are not removed from the output anymore
447
+
448
+ doc/news/release_0_12_0.page
449
+ lib/kramdown/parser/kramdown/extensions.rb
450
+ test/testcases/block/08_list/item_ial.html
451
+ test/testcases/block/13_definition_list/item_ial.html
452
+ test/testcases/span/ial/simple.html
453
+
454
+ commit c4516cfcfe3c0447dcb6508da9f41e32221a87b1
455
+ Author: Thomas Leitner <t_leitner@gmx.at>
456
+ Date: Tue Oct 5 08:56:58 2010 +0200
457
+
458
+ Performance tweak for kramdown parser
459
+
460
+ Using just one main regexp for block extension/ALD/IAL and one for span
461
+ extension/IAL which makes the parser faster because it has to check
462
+ fewer regexps for matches.
463
+
464
+ lib/kramdown/parser/kramdown.rb
465
+ lib/kramdown/parser/kramdown/attribute_list.rb
466
+ lib/kramdown/parser/kramdown/block_boundary.rb
467
+ lib/kramdown/parser/kramdown/blockquote.rb
468
+ lib/kramdown/parser/kramdown/codeblock.rb
469
+ lib/kramdown/parser/kramdown/extension.rb
470
+ lib/kramdown/parser/kramdown/extensions.rb
471
+ lib/kramdown/parser/kramdown/footnote.rb
472
+ lib/kramdown/parser/kramdown/list.rb
473
+ lib/kramdown/parser/kramdown/paragraph.rb
474
+ lib/kramdown/parser/markdown.rb
475
+
476
+ commit fac8e8816f3a764f606a598c14b0773d85467e2f
477
+ Author: Thomas Leitner <t_leitner@gmx.at>
478
+ Date: Fri Oct 1 16:44:45 2010 +0200
479
+
480
+ Added a Markdown-only parser
481
+
482
+ doc/documentation.page
483
+ doc/index.page
484
+ doc/news/release_0_12_0.page
485
+ doc/parser/markdown.page
486
+ lib/kramdown/parser.rb
487
+ lib/kramdown/parser/kramdown/block_boundary.rb
488
+ lib/kramdown/parser/kramdown/blockquote.rb
489
+ lib/kramdown/parser/kramdown/codeblock.rb
490
+ lib/kramdown/parser/kramdown/list.rb
491
+ lib/kramdown/parser/kramdown/paragraph.rb
492
+ lib/kramdown/parser/markdown.rb
493
+
494
+ commit b46710ec92ae7a813462e684ed762e45c45e7275
495
+ Author: Thomas Leitner <t_leitner@gmx.at>
496
+ Date: Fri Oct 1 16:27:34 2010 +0200
497
+
498
+ Fixed output of paragraphs starting with a right angle bracket in the kramdown converter
499
+
500
+ doc/news/release_0_12_0.page
501
+ lib/kramdown/converter/kramdown.rb
502
+
503
+ commit 26090374d6591ec87085200ea357ff542b86a47d
504
+ Author: Thomas Leitner <t_leitner@gmx.at>
505
+ Date: Fri Oct 1 16:24:02 2010 +0200
506
+
507
+ Angle brackets may now also be escaped because Markdown allows it
508
+
509
+ doc/news/release_0_12_0.page
510
+ doc/syntax.page
511
+ lib/kramdown/parser/kramdown/escaped_chars.rb
512
+ test/testcases/span/escaped_chars/normal.html
513
+ test/testcases/span/escaped_chars/normal.text
514
+
515
+ commit 79ef63a076917543730b5076c086c16491908f83
516
+ Author: Thomas Leitner <t_leitner@gmx.at>
517
+ Date: Fri Oct 1 14:54:25 2010 +0200
518
+
519
+ Fixed output of HTML doctype in kramdown converter
520
+
521
+ doc/news/release_0_12_0.page
522
+ lib/kramdown/converter/kramdown.rb
523
+
524
+ commit 89216ddc8dbfac4118c84b8397911d2cce39e71c
525
+ Author: Thomas Leitner <t_leitner@gmx.at>
526
+ Date: Fri Oct 1 14:53:57 2010 +0200
527
+
528
+ Updated version number and added release notes file
529
+
530
+ doc/news/release_0_12_0.page
531
+ lib/kramdown/version.rb
532
+
1
533
  commit 276393819cfab5859236cf654d242dac72a7c220
2
534
  Author: Thomas Leitner <t_leitner@gmx.at>
3
535
  Date: Fri Oct 1 08:50:48 2010 +0200