kramdown 0.8.0 → 0.9.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.
- data/CONTRIBUTERS +2 -1
- data/ChangeLog +454 -0
- data/README +1 -1
- data/VERSION +1 -1
- data/doc/{default.less.css → default.scss.css} +12 -9
- data/doc/documentation.page +1 -1
- data/doc/index.page +37 -3
- data/doc/syntax.page +10 -7
- data/lib/kramdown/converter.rb +1 -0
- data/lib/kramdown/converter/html.rb +61 -67
- data/lib/kramdown/converter/kramdown.rb +398 -0
- data/lib/kramdown/converter/latex.rb +274 -276
- data/lib/kramdown/document.rb +2 -0
- data/lib/kramdown/options.rb +16 -15
- data/lib/kramdown/parser/base.rb +0 -1
- data/lib/kramdown/parser/html.rb +122 -27
- data/lib/kramdown/parser/kramdown.rb +2 -0
- data/lib/kramdown/parser/kramdown/attribute_list.rb +2 -0
- data/lib/kramdown/parser/kramdown/extension.rb +2 -1
- data/lib/kramdown/parser/kramdown/html.rb +2 -2
- data/lib/kramdown/parser/kramdown/html_entity.rb +1 -1
- data/lib/kramdown/parser/kramdown/link.rb +5 -2
- data/lib/kramdown/parser/kramdown/list.rb +13 -9
- data/lib/kramdown/parser/kramdown/math.rb +1 -1
- data/lib/kramdown/parser/kramdown/typographic_symbol.rb +4 -4
- data/lib/kramdown/utils.rb +36 -0
- data/lib/kramdown/utils/entities.rb +338 -0
- data/lib/kramdown/utils/html.rb +72 -0
- data/lib/kramdown/version.rb +1 -1
- data/man/man1/kramdown.1 +20 -17
- data/test/run_tests.rb +1 -1
- data/test/test_files.rb +60 -3
- data/test/testcases/block/06_codeblock/whitespace.html +2 -2
- data/test/testcases/block/07_horizontal_rule/error.html.19 +7 -0
- data/test/testcases/block/09_html/html_to_native/code.html +1 -1
- data/test/testcases/block/09_html/html_to_native/code.text +1 -1
- data/test/testcases/block/09_html/html_to_native/table_simple.html +38 -2
- data/test/testcases/block/09_html/html_to_native/table_simple.text +42 -0
- data/test/testcases/block/09_html/html_to_native/typography.html.19 +1 -0
- data/test/testcases/block/09_html/simple.html.19 +62 -0
- data/test/testcases/block/11_ial/simple.html +3 -2
- data/test/testcases/block/12_extension/comment.html +3 -2
- data/test/testcases/block/12_extension/options.html +0 -3
- data/test/testcases/block/12_extension/options.text +0 -6
- data/test/testcases/block/13_definition_list/item_ial.html +14 -0
- data/test/testcases/block/13_definition_list/item_ial.text +8 -0
- data/test/testcases/block/16_toc/no_toc_depth.html +33 -0
- data/test/testcases/block/16_toc/no_toc_depth.options +1 -0
- data/test/testcases/block/16_toc/no_toc_depth.text +16 -0
- data/test/testcases/block/16_toc/toc_depth_2.html +24 -0
- data/test/testcases/block/16_toc/toc_depth_2.options +1 -0
- data/test/testcases/block/16_toc/toc_depth_2.text +16 -0
- data/test/testcases/span/01_link/empty.html +2 -0
- data/test/testcases/span/01_link/empty.text +2 -0
- data/test/testcases/span/01_link/imagelinks.html +2 -0
- data/test/testcases/span/01_link/imagelinks.text +2 -0
- data/test/testcases/span/01_link/inline.html.19 +40 -0
- data/test/testcases/span/01_link/reference.html.19 +32 -0
- data/test/testcases/span/extension/comment.html +3 -3
- data/test/testcases/span/text_substitutions/entities.html.19 +4 -0
- data/test/testcases/span/text_substitutions/entities_numeric.html +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.html.19 +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.options +1 -0
- data/test/testcases/span/text_substitutions/entities_numeric.text +1 -0
- data/test/testcases/span/text_substitutions/typography.html.19 +18 -0
- metadata +30 -10
- data/test/testcases/block/09_html/filtered_html.html +0 -1
- data/test/testcases/block/09_html/filtered_html.options +0 -1
- data/test/testcases/block/09_html/filtered_html.text +0 -1
data/CONTRIBUTERS
CHANGED
data/ChangeLog
CHANGED
@@ -1,3 +1,457 @@
|
|
1
|
+
commit 63cc1fe8b8f5f43db99c5ef9b20daf12c16f4cd3
|
2
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
|
+
Date: Wed Jun 23 08:47:27 2010 +0200
|
4
|
+
|
5
|
+
Small test fix
|
6
|
+
|
7
|
+
test/test_files.rb
|
8
|
+
|
9
|
+
commit bfec0e5a98149d674d03ce75dd4d04b7b62c8ba6
|
10
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
11
|
+
Date: Wed Jun 23 07:17:45 2010 +0200
|
12
|
+
|
13
|
+
Updated documentation for release
|
14
|
+
|
15
|
+
doc/index.page
|
16
|
+
doc/news/release_0_9_0.page
|
17
|
+
|
18
|
+
commit 1f80723e9ae6180fd6995b30e3449a9bc6e88d5b
|
19
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
20
|
+
Date: Wed Jun 23 06:59:06 2010 +0200
|
21
|
+
|
22
|
+
Fixed html-to-native conversion of tables so that only conforming tables are converted
|
23
|
+
|
24
|
+
doc/news/release_0_9_0.page
|
25
|
+
lib/kramdown/parser/html.rb
|
26
|
+
test/test_files.rb
|
27
|
+
test/testcases/block/09_html/html_to_native/table_simple.html
|
28
|
+
test/testcases/block/09_html/html_to_native/table_simple.text
|
29
|
+
|
30
|
+
commit 27f1f943f3cc4552cb5134250e9766a57885d19b
|
31
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
32
|
+
Date: Mon Jun 21 16:31:57 2010 +0200
|
33
|
+
|
34
|
+
Updated documentation and release notes
|
35
|
+
|
36
|
+
doc/converter/latex.page
|
37
|
+
doc/news/release_0_9_0.page
|
38
|
+
|
39
|
+
commit 51536024c7462251f5690028a9507e1ee3e58fda
|
40
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
41
|
+
Date: Mon Jun 21 16:31:40 2010 +0200
|
42
|
+
|
43
|
+
LaTeX converter: outputting attributes for some more elements
|
44
|
+
|
45
|
+
lib/kramdown/converter/latex.rb
|
46
|
+
|
47
|
+
commit 74689d273000670389d63847d6bee547b4135bde
|
48
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
49
|
+
Date: Mon Jun 21 15:35:09 2010 +0200
|
50
|
+
|
51
|
+
Implemented an extended version of Michael Franzl's LaTeX blockquote proposal
|
52
|
+
|
53
|
+
All converter methods that use the #latex_environment helper method now
|
54
|
+
output the element attributes on the line starting with \begin{...}
|
55
|
+
as a LaTeX comment.
|
56
|
+
|
57
|
+
lib/kramdown/converter/latex.rb
|
58
|
+
|
59
|
+
commit 3c9f5b7cb95390897fccc3cf318bd33924a52690
|
60
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
61
|
+
Date: Mon Jun 21 08:17:47 2010 +0200
|
62
|
+
|
63
|
+
Added html-to-kramdown-to-html tests and fixed all appearing bugs
|
64
|
+
|
65
|
+
lib/kramdown/converter/kramdown.rb
|
66
|
+
lib/kramdown/converter/latex.rb
|
67
|
+
test/test_files.rb
|
68
|
+
|
69
|
+
commit d3ff2504b89da1ebcfaeca1d7cec2c0ae81f6e3e
|
70
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
71
|
+
Date: Mon Jun 21 08:16:50 2010 +0200
|
72
|
+
|
73
|
+
Added html-to-native conversion of math div/span elements
|
74
|
+
|
75
|
+
lib/kramdown/parser/html.rb
|
76
|
+
|
77
|
+
commit 7f80ae944b731ad0faa1c73a66d12cbd4d0c7af5
|
78
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
79
|
+
Date: Mon Jun 21 08:16:25 2010 +0200
|
80
|
+
|
81
|
+
Text children of flow HTML elements are now wrapped in :transparent paragraphs
|
82
|
+
|
83
|
+
lib/kramdown/parser/html.rb
|
84
|
+
|
85
|
+
commit 98fd3b4acaa9438b94fcf66d8279828a72d16b17
|
86
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
87
|
+
Date: Mon Jun 21 08:15:09 2010 +0200
|
88
|
+
|
89
|
+
Re-enabled the toc tests in text->kramdown->html tests
|
90
|
+
|
91
|
+
test/test_files.rb
|
92
|
+
|
93
|
+
commit 7671b5546c0b616c63c8f6292646d551c577f3f4
|
94
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
95
|
+
Date: Mon Jun 21 08:14:13 2010 +0200
|
96
|
+
|
97
|
+
Fixed escaping of math output in HTML converter
|
98
|
+
|
99
|
+
lib/kramdown/converter/html.rb
|
100
|
+
|
101
|
+
commit c74f439d86e6fffa8fa5d1f8e321bd25c1ba08fe
|
102
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
103
|
+
Date: Mon Jun 21 08:13:42 2010 +0200
|
104
|
+
|
105
|
+
Changed the way how compact lists are represented internally
|
106
|
+
|
107
|
+
List items now always contain block elements and if the list is compact,
|
108
|
+
i.e. if the first part should only be text, then it is wrapped in a
|
109
|
+
paragraph and the paragraph is assigned the :transparent option.
|
110
|
+
|
111
|
+
lib/kramdown/converter/html.rb
|
112
|
+
lib/kramdown/parser/kramdown/list.rb
|
113
|
+
|
114
|
+
commit 4c03e46ccad57c9a36529f1a9facb2ffd9c2364c
|
115
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
116
|
+
Date: Sun Jun 20 11:57:24 2010 +0200
|
117
|
+
|
118
|
+
Allowing empty alternative text for image links
|
119
|
+
|
120
|
+
doc/news/release_0_9_0.page
|
121
|
+
doc/syntax.page
|
122
|
+
lib/kramdown/parser/kramdown/link.rb
|
123
|
+
test/testcases/span/01_link/empty.html
|
124
|
+
test/testcases/span/01_link/empty.text
|
125
|
+
test/testcases/span/01_link/imagelinks.html
|
126
|
+
test/testcases/span/01_link/imagelinks.text
|
127
|
+
|
128
|
+
commit 71f047d89a9dcd77a93bbfb7d485fdf32edba1e8
|
129
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
130
|
+
Date: Sun Jun 20 11:23:57 2010 +0200
|
131
|
+
|
132
|
+
Small doc change
|
133
|
+
|
134
|
+
README
|
135
|
+
|
136
|
+
commit 19950a07838992d947224cf7b8ee05aa8d191cc5
|
137
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
138
|
+
Date: Sun Jun 20 11:09:31 2010 +0200
|
139
|
+
|
140
|
+
Updated news file
|
141
|
+
|
142
|
+
doc/news/release_0_9_0.page
|
143
|
+
|
144
|
+
commit 744baf367c8273e14f03bf05949064130d50d86b
|
145
|
+
Author: Alex Marandon <contact@alexmarandon.com>
|
146
|
+
Date: Sat Jun 19 23:39:27 2010 +0700
|
147
|
+
|
148
|
+
Fix ri documentation error
|
149
|
+
|
150
|
+
When installing the gem, there was an error in the documentation generation.
|
151
|
+
Amazingly, just replacing the curly braces block by a do/end block solves the
|
152
|
+
problem.
|
153
|
+
|
154
|
+
The error was:
|
155
|
+
|
156
|
+
Installing ri documentation for kramdown-0.9.0...
|
157
|
+
|
158
|
+
RDoc failure in lib/kramdown/parser/html.rb at or around line 299 column 64
|
159
|
+
|
160
|
+
Before reporting this, could you check that the file
|
161
|
+
you're documenting compiles cleanly--RDoc is not a
|
162
|
+
full Ruby parser, and gets confused easily if fed
|
163
|
+
invalid programs.
|
164
|
+
|
165
|
+
The internal error was:
|
166
|
+
|
167
|
+
ERROR: While generating documentation for kramdown-0.9.0
|
168
|
+
... MESSAGE: Name or symbol expected (got
|
169
|
+
... RDOC args: --ri --op /home/al/.gem/ruby/1.8/doc/kramdown-0.9.0/ri
|
170
|
+
--line-numbers --main Kramdown --quiet lib --title kramdown-0.9.0 Documentation
|
171
|
+
(continuing with the rest of the installation)
|
172
|
+
|
173
|
+
lib/kramdown/parser/html.rb
|
174
|
+
|
175
|
+
commit a2e10bf6d7ebdc130267827e51ea7097617f4700
|
176
|
+
Author: Alex Marandon <contact@alexmarandon.com>
|
177
|
+
Date: Fri Jun 18 23:17:53 2010 +0700
|
178
|
+
|
179
|
+
Exclude toc tests from text->kramdown->html tests
|
180
|
+
|
181
|
+
test/test_files.rb
|
182
|
+
test/testcases/block/16_toc/toc_depth_2.html
|
183
|
+
test/testcases/block/16_toc/toc_depth_2.options
|
184
|
+
test/testcases/block/16_toc/toc_depth_2.text
|
185
|
+
test/testcases/block/16_toc/top_depth_2.html
|
186
|
+
test/testcases/block/16_toc/top_depth_2.options
|
187
|
+
test/testcases/block/16_toc/top_depth_2.text
|
188
|
+
|
189
|
+
commit 7e08f2b8e74e9074e1dce28bae799fceacb40ef1
|
190
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
191
|
+
Date: Sun Jun 20 11:03:57 2010 +0200
|
192
|
+
|
193
|
+
Updated documentation and release notes in regard to toc_depth option
|
194
|
+
|
195
|
+
doc/converter/html.page
|
196
|
+
doc/converter/latex.page
|
197
|
+
doc/news/release_0_9_0.page
|
198
|
+
|
199
|
+
commit e8676132692081156adaf76c33d7d8cd73e5ec92
|
200
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
201
|
+
Date: Sun Jun 20 11:01:28 2010 +0200
|
202
|
+
|
203
|
+
Using toc_depth option in Latex converter
|
204
|
+
|
205
|
+
lib/kramdown/converter/latex.rb
|
206
|
+
lib/kramdown/options.rb
|
207
|
+
|
208
|
+
commit 22b1dd6e42ddd3799ef38efd6af1839ebd478283
|
209
|
+
Author: Alex Marandon <contact@alexmarandon.com>
|
210
|
+
Date: Sun Jun 13 18:29:34 2010 +0700
|
211
|
+
|
212
|
+
Add toc_depth option
|
213
|
+
|
214
|
+
Add an option to specify the maximum depth of generated table of contents.
|
215
|
+
|
216
|
+
lib/kramdown/converter/html.rb
|
217
|
+
lib/kramdown/options.rb
|
218
|
+
test/testcases/block/16_toc/no_toc_depth.html
|
219
|
+
test/testcases/block/16_toc/no_toc_depth.options
|
220
|
+
test/testcases/block/16_toc/no_toc_depth.text
|
221
|
+
test/testcases/block/16_toc/top_depth_2.html
|
222
|
+
test/testcases/block/16_toc/top_depth_2.options
|
223
|
+
test/testcases/block/16_toc/top_depth_2.text
|
224
|
+
|
225
|
+
commit 9c18bf3f128dd05542b2274197006f04535a71c3
|
226
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
227
|
+
Date: Sun Jun 20 10:41:10 2010 +0200
|
228
|
+
|
229
|
+
Added information about needed LaTeX packages
|
230
|
+
|
231
|
+
doc/converter/latex.page
|
232
|
+
|
233
|
+
commit 75a941152077666bc8b9357deae5bf36f7d5728b
|
234
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
235
|
+
Date: Sun Jun 20 09:07:58 2010 +0200
|
236
|
+
|
237
|
+
Added input-output diagram to front page
|
238
|
+
|
239
|
+
doc/index.page
|
240
|
+
|
241
|
+
commit f2c40f814899ffe240fd1b2441d1d137b8b37b7e
|
242
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
243
|
+
Date: Thu Jun 17 08:03:33 2010 +0200
|
244
|
+
|
245
|
+
Fixed problems in html-to-native conversion
|
246
|
+
|
247
|
+
* Whitespace was modified in non-native pre/code elements
|
248
|
+
* Some conversions were done although they should not have been
|
249
|
+
when a parent element was non-native
|
250
|
+
|
251
|
+
lib/kramdown/parser/html.rb
|
252
|
+
|
253
|
+
commit 0334cb2c8fe1bb93364eb2b2b389bece0cb3cf71
|
254
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
255
|
+
Date: Thu Jun 17 07:16:25 2010 +0200
|
256
|
+
|
257
|
+
Block IALs and ALDs now insert an :eob element into the output stream
|
258
|
+
|
259
|
+
Since these elements visually end a block, they should end a block
|
260
|
+
element during the parsing stage.
|
261
|
+
|
262
|
+
lib/kramdown/parser/kramdown/attribute_list.rb
|
263
|
+
test/testcases/block/11_ial/simple.html
|
264
|
+
|
265
|
+
commit 63181190164e3b9e8ebeab34c3926b377f0678b5
|
266
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
267
|
+
Date: Wed Jun 16 08:10:27 2010 +0200
|
268
|
+
|
269
|
+
Using the scss processor instead of less for the stylesheet
|
270
|
+
|
271
|
+
doc/default.less.css
|
272
|
+
doc/default.scss.css
|
273
|
+
|
274
|
+
commit 06e372e8acffb7e4aeba21f95aadd88e9c7f43da
|
275
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
276
|
+
Date: Tue Jun 15 22:21:03 2010 +0200
|
277
|
+
|
278
|
+
Update documentation and release notes
|
279
|
+
|
280
|
+
doc/converter/kramdown.page
|
281
|
+
doc/documentation.page
|
282
|
+
doc/news/release_0_9_0.page
|
283
|
+
|
284
|
+
commit 1ce85c93b2cde82a947ec85c0575b483a99a6092
|
285
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
286
|
+
Date: Tue Jun 15 22:05:39 2010 +0200
|
287
|
+
|
288
|
+
Readded Converter::Html#options_for_element with deprecation
|
289
|
+
|
290
|
+
webgen uses this, so just removing would lead to problems
|
291
|
+
|
292
|
+
doc/news/release_0_9_0.page
|
293
|
+
lib/kramdown/converter/html.rb
|
294
|
+
|
295
|
+
commit c145bf7ffe24345ad1e19f493941c6ee11f4d1b2
|
296
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
297
|
+
Date: Tue Jun 15 21:47:46 2010 +0200
|
298
|
+
|
299
|
+
Added kramdown converter
|
300
|
+
|
301
|
+
lib/kramdown/converter.rb
|
302
|
+
lib/kramdown/converter/kramdown.rb
|
303
|
+
lib/kramdown/options.rb
|
304
|
+
test/test_files.rb
|
305
|
+
|
306
|
+
commit 6d65732107545e87cea30aea3fc43c0ab7835c5f
|
307
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
308
|
+
Date: Tue Jun 15 21:46:37 2010 +0200
|
309
|
+
|
310
|
+
Fixed :category option of math span element
|
311
|
+
|
312
|
+
lib/kramdown/parser/kramdown/math.rb
|
313
|
+
|
314
|
+
commit 59749d6037591f575f799a0321ed057b68ebb737
|
315
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
316
|
+
Date: Tue Jun 15 21:44:14 2010 +0200
|
317
|
+
|
318
|
+
Extracted common HTML converter methods to a separate utils class
|
319
|
+
|
320
|
+
lib/kramdown/converter/html.rb
|
321
|
+
lib/kramdown/utils.rb
|
322
|
+
lib/kramdown/utils/html.rb
|
323
|
+
|
324
|
+
commit f92234b8e27e872e54bf84890e2a4dd978d9dd83
|
325
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
326
|
+
Date: Tue Jun 15 17:01:34 2010 +0200
|
327
|
+
|
328
|
+
Fixed problem with item IALs and enabled item IALs for definitions
|
329
|
+
|
330
|
+
Item IAL was not recognized when first element was a code block.
|
331
|
+
|
332
|
+
doc/syntax.page
|
333
|
+
lib/kramdown/parser/kramdown/list.rb
|
334
|
+
test/testcases/block/13_definition_list/item_ial.html
|
335
|
+
test/testcases/block/13_definition_list/item_ial.text
|
336
|
+
|
337
|
+
commit 12ccf8617f6869271709eb61ba465a07eb07d084
|
338
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
339
|
+
Date: Mon Jun 14 20:09:32 2010 +0200
|
340
|
+
|
341
|
+
Updated comment extension to produce :comment element
|
342
|
+
|
343
|
+
kramdown comments are now output in HTML and LaTeX
|
344
|
+
|
345
|
+
lib/kramdown/converter/html.rb
|
346
|
+
lib/kramdown/converter/latex.rb
|
347
|
+
lib/kramdown/parser/kramdown/extension.rb
|
348
|
+
test/testcases/block/12_extension/comment.html
|
349
|
+
test/testcases/span/extension/comment.html
|
350
|
+
|
351
|
+
commit ebb339d927bf315793763eb73f39325005aed83a
|
352
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
353
|
+
Date: Mon Jun 14 19:16:45 2010 +0200
|
354
|
+
|
355
|
+
Elements of type :eob do not appear anymore in the final element tree
|
356
|
+
|
357
|
+
lib/kramdown/converter/html.rb
|
358
|
+
lib/kramdown/converter/latex.rb
|
359
|
+
lib/kramdown/parser/kramdown.rb
|
360
|
+
|
361
|
+
commit 8ecf464bda6c136b7bdfe62642cd3d73d92924bc
|
362
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
363
|
+
Date: Fri Jun 11 09:55:19 2010 +0200
|
364
|
+
|
365
|
+
HTML converter outputs characters for entities if possible
|
366
|
+
|
367
|
+
This is only done if run under Ruby 1.9
|
368
|
+
|
369
|
+
doc/news/release_0_9_0.page
|
370
|
+
lib/kramdown/converter/html.rb
|
371
|
+
lib/kramdown/parser/html.rb
|
372
|
+
lib/kramdown/utils/entities.rb
|
373
|
+
test/test_files.rb
|
374
|
+
test/testcases/block/07_horizontal_rule/error.html.19
|
375
|
+
test/testcases/block/09_html/html_to_native/typography.html.19
|
376
|
+
test/testcases/block/09_html/simple.html.19
|
377
|
+
test/testcases/span/01_link/inline.html.19
|
378
|
+
test/testcases/span/01_link/reference.html.19
|
379
|
+
test/testcases/span/text_substitutions/entities.html.19
|
380
|
+
test/testcases/span/text_substitutions/entities_numeric.html.19
|
381
|
+
test/testcases/span/text_substitutions/typography.html.19
|
382
|
+
|
383
|
+
commit a616422221bc5e2d62f5c63bf19b3f96c7607ca2
|
384
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
385
|
+
Date: Thu Jun 10 08:07:27 2010 +0200
|
386
|
+
|
387
|
+
Updated handling of code span/block elements
|
388
|
+
|
389
|
+
- They can contain only text, again
|
390
|
+
- When using html_to_native or the HTML parser and you are using Ruby
|
391
|
+
1.9, entities are converted to characters if possible and if the
|
392
|
+
result contains only text, a code span/block is created - otherwise
|
393
|
+
a generic HTML code/pre element is used.
|
394
|
+
|
395
|
+
lib/kramdown/converter/html.rb
|
396
|
+
lib/kramdown/converter/latex.rb
|
397
|
+
lib/kramdown/document.rb
|
398
|
+
lib/kramdown/parser/base.rb
|
399
|
+
lib/kramdown/parser/html.rb
|
400
|
+
lib/kramdown/parser/kramdown/html.rb
|
401
|
+
test/testcases/block/09_html/html_to_native/code.html
|
402
|
+
test/testcases/block/09_html/html_to_native/code.text
|
403
|
+
|
404
|
+
commit 2b3deaf9c6b7efb005cf41eaaaaaae6003b4b09d
|
405
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
406
|
+
Date: Thu Jun 10 07:19:42 2010 +0200
|
407
|
+
|
408
|
+
Updated entity handling implementation
|
409
|
+
|
410
|
+
- Added a separate module for handling entities
|
411
|
+
- Added option numeric_entities for defining whether entities are output
|
412
|
+
using their names or their numeric values
|
413
|
+
|
414
|
+
doc/news/release_0_9_0.page
|
415
|
+
lib/kramdown/converter/html.rb
|
416
|
+
lib/kramdown/converter/latex.rb
|
417
|
+
lib/kramdown/document.rb
|
418
|
+
lib/kramdown/options.rb
|
419
|
+
lib/kramdown/parser/html.rb
|
420
|
+
lib/kramdown/parser/kramdown/html_entity.rb
|
421
|
+
lib/kramdown/parser/kramdown/typographic_symbol.rb
|
422
|
+
lib/kramdown/utils.rb
|
423
|
+
lib/kramdown/utils/entities.rb
|
424
|
+
test/testcases/block/06_codeblock/whitespace.html
|
425
|
+
test/testcases/span/text_substitutions/entities_numeric.html
|
426
|
+
test/testcases/span/text_substitutions/entities_numeric.options
|
427
|
+
test/testcases/span/text_substitutions/entities_numeric.text
|
428
|
+
|
429
|
+
commit 66e9bcc591cd2433f1c919cee3c0deb647aa3724
|
430
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
431
|
+
Date: Wed Jun 9 15:53:47 2010 +0200
|
432
|
+
|
433
|
+
Removed deprecated option filter_html
|
434
|
+
|
435
|
+
doc/converter/html.page
|
436
|
+
lib/kramdown/converter/html.rb
|
437
|
+
lib/kramdown/options.rb
|
438
|
+
test/run_tests.rb
|
439
|
+
test/test_files.rb
|
440
|
+
test/testcases/block/09_html/filtered_html.html
|
441
|
+
test/testcases/block/09_html/filtered_html.options
|
442
|
+
test/testcases/block/09_html/filtered_html.text
|
443
|
+
test/testcases/block/12_extension/options.html
|
444
|
+
test/testcases/block/12_extension/options.text
|
445
|
+
|
446
|
+
commit f4e2496bb4d930b77d8897a7fb014615c1882b5b
|
447
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
448
|
+
Date: Wed Jun 9 15:45:34 2010 +0200
|
449
|
+
|
450
|
+
Bumped version number and added release notes file
|
451
|
+
|
452
|
+
doc/news/release_0_9_0.page
|
453
|
+
lib/kramdown/version.rb
|
454
|
+
|
1
455
|
commit 824d854f2aa176664528d51e7ec98d91d7944b39
|
2
456
|
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
457
|
Date: Tue Jun 8 15:45:02 2010 +0200
|