public
Fork of mislav/bluecloth
Description: Markdown processor in Ruby; foked from official SVN repo to fix bugs
Homepage: http://www.deveiate.org/projects/BlueCloth
Clone URL: git://github.com/github/bluecloth.git
add official Markdown.pl for reference and testing
mislav (author)
Wed Apr 23 16:21:38 -0700 2008
commit  320fc66c65d8bcb7c88daaf710f3d48dddefae99
tree    346543a176c77cc9a5fff6ba90598c9e41f847f4
parent  ee2c173c12f0902041f5b8456196aee1fcb6b88d
...
1
2
 
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
 
 
 
 
...
 
 
1
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
4
5
6
0
@@ -1,366 +1,6 @@
0
-------------------------------------------------------------------------
0
-r69 | ged | 2004-08-24 22:27:15 -0700 (Tue, 24 Aug 2004) | 2 lines
0
+== Since Mislav forked the project from SVN
0
 
0
-- Fixed bug introduced by the last bugfix, fixed tests that missed the new bug.
0
-
0
-------------------------------------------------------------------------
0
-r68 | ged | 2004-08-24 22:14:37 -0700 (Tue, 24 Aug 2004) | 3 lines
0
-
0
-- Tracked down and fixed another regexp engine overflow bug; added a new test,
0
- datafile, and minimal testcase that illustrates it.
0
-
0
-------------------------------------------------------------------------
0
-r66 | ged | 2004-08-24 07:57:17 -0700 (Tue, 24 Aug 2004) | 1 line
0
-
0
-- Updated to v1.0.0.
0
-------------------------------------------------------------------------
0
-r65 | ged | 2004-08-24 07:56:47 -0700 (Tue, 24 Aug 2004) | 1 line
0
-
0
-- Updated to v1.0.0.
0
-------------------------------------------------------------------------
0
-r64 | ged | 2004-08-24 07:53:32 -0700 (Tue, 24 Aug 2004) | 1 line
0
-
0
-- Updated to 20040824.
0
-------------------------------------------------------------------------
0
-r63 | ged | 2004-08-24 07:52:05 -0700 (Tue, 24 Aug 2004) | 3 lines
0
-
0
-- Added CHANGES.xml to ignore property for root directory.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r62 | ged | 2004-08-24 07:48:44 -0700 (Tue, 24 Aug 2004) | 7 lines
0
-
0
-- Brought list of block-level tags up to date with Markdown 1.0's list
0
-- Propagated fix for overflow to the other two block-match patterns.
0
-- Abstracted list-item patterns out into constants to closer match Markdown's
0
- code and to expose them for use in other code.
0
-- Fixed indentation of <pre> blocks inside blockquotes.
0
-- Added new tests for all of the above.
0
-
0
-------------------------------------------------------------------------
0
-r61 | ged | 2004-08-22 12:28:23 -0700 (Sun, 22 Aug 2004) | 5 lines
0
-
0
-- Fixed re-engine overflow for all tested cases (thanks to Martin Chase
0
- <stillflame@FaerieMUD.org> for the fix).
0
-- Wrote some additional tests to be sure the block-level html escaper is working
0
- after the above fix.
0
-
0
-------------------------------------------------------------------------
0
-r60 | ged | 2004-08-22 12:26:25 -0700 (Sun, 22 Aug 2004) | 2 lines
0
-
0
-- Removed skip of overflow test.
0
-
0
-------------------------------------------------------------------------
0
-r59 | ged | 2004-08-22 12:24:35 -0700 (Sun, 22 Aug 2004) | 2 lines
0
-
0
-- "Fixed" the test case so it overflows again.
0
-
0
-------------------------------------------------------------------------
0
-r58 | deveiant | 2004-08-08 22:12:02 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Updated to 20040808.
0
-
0
-------------------------------------------------------------------------
0
-r57 | deveiant | 2004-08-08 18:16:14 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Modified to work from wherever the test is run (RPA compat).
0
-
0
-------------------------------------------------------------------------
0
-r56 | deveiant | 2004-08-08 18:15:57 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Modified to work from wherever the test is run (RPA compat).
0
-
0
-------------------------------------------------------------------------
0
-r55 | deveiant | 2004-08-08 18:15:27 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Updated version attribute.
0
-
0
-------------------------------------------------------------------------
0
-r54 | deveiant | 2004-08-08 18:14:58 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Brought markdown syntax up to date with Markdown 1.0fc1.
0
-
0
-------------------------------------------------------------------------
0
-r53 | deveiant | 2004-08-08 18:13:16 -0700 (Sun, 08 Aug 2004) | 2 lines
0
-
0
-- Made the require-header work wherever the test is run from (RPA compat).
0
-
0
-------------------------------------------------------------------------
0
-r51 | deveiant | 2004-06-21 08:20:59 -0700 (Mon, 21 Jun 2004) | 4 lines
0
-
0
-- Brought up to date with Markdown 1.0b7.
0
-
0
-- Ignore list properties on the base and docs directories updated.
0
-
0
-------------------------------------------------------------------------
0
-r50 | deveiant | 2004-06-02 06:37:15 -0700 (Wed, 02 Jun 2004) | 1 line
0
-
0
-- Commented out non-functional --output option for now.
0
-------------------------------------------------------------------------
0
-r49 | deveiant | 2004-06-01 20:30:18 -0700 (Tue, 01 Jun 2004) | 2 lines
0
-
0
-Initial checkin.
0
-
0
-------------------------------------------------------------------------
0
-r48 | deveiant | 2004-06-01 20:29:31 -0700 (Tue, 01 Jun 2004) | 2 lines
0
-
0
-- Added test for bug #574.
0
-
0
-------------------------------------------------------------------------
0
-r47 | deveiant | 2004-06-01 20:21:04 -0700 (Tue, 01 Jun 2004) | 8 lines
0
-
0
-- Test for bug #620 - Unresolved reference-style links doubled the character
0
- immediately after them.
0
-
0
-- Added additional test email addresses, including ones that use extended latin
0
- charset.
0
-
0
-- Added bug reference to a test.
0
-
0
-------------------------------------------------------------------------
0
-r46 | deveiant | 2004-06-01 20:19:41 -0700 (Tue, 01 Jun 2004) | 4 lines
0
-
0
-- Fix for bug #620 - Unresolved reference-style links doubled the character
0
- immediately after them.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r45 | deveiant | 2004-05-13 19:43:17 -0700 (Thu, 13 May 2004) | 4 lines
0
-
0
-- Added tests for bug #568 (Two sets of bold text on one line doesn't render
0
- properly). Tests confirmed that two sets of bold text did work, but single
0
- characters being bolded does not.
0
-
0
-------------------------------------------------------------------------
0
-r44 | deveiant | 2004-05-13 19:41:52 -0700 (Thu, 13 May 2004) | 2 lines
0
-
0
-- Fixed bug with bolding of single characters (bug #568).
0
-
0
-------------------------------------------------------------------------
0
-r43 | deveiant | 2004-05-04 07:35:11 -0700 (Tue, 04 May 2004) | 2 lines
0
-
0
-- Additional fixes and tests for bug #537.
0
-
0
-------------------------------------------------------------------------
0
-r41 | deveiant | 2004-04-29 20:40:38 -0700 (Thu, 29 Apr 2004) | 2 lines
0
-
0
-- Added bin/ directory.
0
-
0
-------------------------------------------------------------------------
0
-r40 | deveiant | 2004-04-29 20:40:04 -0700 (Thu, 29 Apr 2004) | 2 lines
0
-
0
-- Set date.
0
-
0
-------------------------------------------------------------------------
0
-r39 | deveiant | 2004-04-29 20:39:24 -0700 (Thu, 29 Apr 2004) | 3 lines
0
-
0
-- Added test for Bug #543 (Safe mode does not work when there are no left
0
- angle-brackets in the source).
0
-
0
-------------------------------------------------------------------------
0
-r38 | deveiant | 2004-04-29 20:38:42 -0700 (Thu, 29 Apr 2004) | 5 lines
0
-
0
-- Added test for email address encoding (Bug #537).
0
-
0
-- Added test for bug #541 (Leading line of codeblock with more than one tab
0
- width of indent mistakenly unindented).
0
-
0
-------------------------------------------------------------------------
0
-r37 | deveiant | 2004-04-29 20:35:26 -0700 (Thu, 29 Apr 2004) | 5 lines
0
-
0
-- Fix for bug #543 (Safe mode does not work when there are no left
0
- angle-brackets in the source).
0
-
0
-
0
-
0
-------------------------------------------------------------------------
0
-r36 | deveiant | 2004-04-29 20:33:01 -0700 (Thu, 29 Apr 2004) | 5 lines
0
-
0
-- Fix for bug #541 (Leading line of codeblock with more than one tab
0
- width of indent mistakenly unindented)
0
-
0
-
0
-
0
-------------------------------------------------------------------------
0
-r35 | deveiant | 2004-04-29 20:31:37 -0700 (Thu, 29 Apr 2004) | 3 lines
0
-
0
-- Fix for bug #537. Fix suggested by Marek Janukowicz.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r32 | deveiant | 2004-04-22 21:47:42 -0700 (Thu, 22 Apr 2004) | 2 lines
0
-
0
-- Temporary fixes until I have time to integrate SVN stuff.
0
-
0
-------------------------------------------------------------------------
0
-r31 | deveiant | 2004-04-22 21:46:51 -0700 (Thu, 22 Apr 2004) | 2 lines
0
-
0
-- Version bump.
0
-
0
-------------------------------------------------------------------------
0
-r30 | deveiant | 2004-04-22 21:46:15 -0700 (Thu, 22 Apr 2004) | 2 lines
0
-
0
-- Brought in line with most-recent release.
0
-
0
-------------------------------------------------------------------------
0
-r29 | deveiant | 2004-04-22 21:40:50 -0700 (Thu, 22 Apr 2004) | 2 lines
0
-
0
-- Version bump.
0
-
0
-------------------------------------------------------------------------
0
-r28 | deveiant | 2004-04-22 21:39:05 -0700 (Thu, 22 Apr 2004) | 4 lines
0
-
0
-- Bugfixes for bugs 524 and 525. Thanks to David Heinemeier Hansson and Javier
0
- Goizueta for bug reports and fixes.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r27 | deveiant | 2004-04-22 21:34:31 -0700 (Thu, 22 Apr 2004) | 2 lines
0
-
0
-- Test for bugs 524 and 525
0
-
0
-------------------------------------------------------------------------
0
-r25 | deveiant | 2004-04-15 18:55:19 -0700 (Thu, 15 Apr 2004) | 1 line
0
-
0
-- Corrected version
0
-------------------------------------------------------------------------
0
-r24 | deveiant | 2004-04-15 18:53:52 -0700 (Thu, 15 Apr 2004) | 2 lines
0
-
0
-- Brought Version up to date.
0
-
0
-------------------------------------------------------------------------
0
-r23 | deveiant | 2004-04-15 18:52:17 -0700 (Thu, 15 Apr 2004) | 1 line
0
-
0
-- Updated ignore metadata.
0
-------------------------------------------------------------------------
0
-r22 | deveiant | 2004-04-15 18:51:14 -0700 (Thu, 15 Apr 2004) | 2 lines
0
-
0
-Initial checkin.
0
-
0
-------------------------------------------------------------------------
0
-r21 | deveiant | 2004-04-15 18:50:31 -0700 (Thu, 15 Apr 2004) | 6 lines
0
-
0
-- Changed tests/ pattern to catch all tests.
0
-
0
-- Added CHANGES.
0
-
0
-- Dropped MANIFEST.
0
-
0
-------------------------------------------------------------------------
0
-r20 | deveiant | 2004-04-15 18:49:46 -0700 (Thu, 15 Apr 2004) | 2 lines
0
-
0
-- Added missing dependency check for devel-logger.
0
-
0
-------------------------------------------------------------------------
0
-r19 | deveiant | 2004-04-15 18:49:12 -0700 (Thu, 15 Apr 2004) | 8 lines
0
-
0
-- Added contributors section to the header.
0
-
0
-- Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
0
-
0
-- Corrections to RedCloth-compatibility.
0
-
0
-- Removed log from renderstate, as it's an attribute of the string itself.
0
-
0
-------------------------------------------------------------------------
0
-r18 | deveiant | 2004-04-15 18:48:27 -0700 (Thu, 15 Apr 2004) | 8 lines
0
-
0
-- Added contributors section to the header.
0
-
0
-- Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
0
-
0
-- Corrections to RedCloth-compatibility.
0
-
0
-- Removed log from renderstate, as it's an attribute of the string itself.
0
-
0
-------------------------------------------------------------------------
0
-r15 | deveiant | 2004-04-11 23:02:54 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Added keywords.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r14 | deveiant | 2004-04-11 23:01:40 -0700 (Sun, 11 Apr 2004) | 2 lines
0
-
0
-- Updated comments/added to-do marker.
0
-
0
-------------------------------------------------------------------------
0
-r13 | deveiant | 2004-04-11 22:47:16 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Updated ignore list.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r12 | deveiant | 2004-04-11 22:46:49 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-Initial checkin.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r11 | deveiant | 2004-04-11 22:45:07 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Added a time() function for timing bits of code.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r10 | deveiant | 2004-04-11 22:43:10 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Changed keyword constants from CVS to SVN keywords.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r9 | deveiant | 2004-04-11 22:29:37 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Changed location of keyword stuff, added URL keyword.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r8 | deveiant | 2004-04-11 22:26:38 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Added the rest of the content.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r7 | deveiant | 2004-04-11 22:21:47 -0700 (Sun, 11 Apr 2004) | 12 lines
0
-
0
-- Fixed license in header
0
-
0
-- Fixed error message in exception class with no second argument.
0
-
0
-- Removed unnecessary (and slllooowww) 'm' flag from HTML block matching
0
- patterns.
0
-
0
-- Fixed code-span scanning to match spans that occur at the beginning of the
0
- line.
0
-
0
-- Fixed error in code-span exception case.
0
-
0
-------------------------------------------------------------------------
0
-r6 | deveiant | 2004-04-11 22:17:45 -0700 (Sun, 11 Apr 2004) | 3 lines
0
-
0
-- Renamed to reflect repurposing.
0
-
0
-
0
-------------------------------------------------------------------------
0
-r5 | deveiant | 2004-04-11 22:17:08 -0700 (Sun, 11 Apr 2004) | 2 lines
0
-
0
-- Converted to bug-testing testcase.
0
-
0
-------------------------------------------------------------------------
0
-r4 | deveiant | 2004-04-11 22:15:34 -0700 (Sun, 11 Apr 2004) | 2 lines
0
-
0
-- Added some mode code span tests to catch bugs.
0
-
0
-------------------------------------------------------------------------
0
-r3 | deveiant | 2004-04-10 21:40:29 -0700 (Sat, 10 Apr 2004) | 2 lines
0
-
0
-- Updated dist/install utilities/libs.
0
-
0
-------------------------------------------------------------------------
0
-r2 | deveiant | 2004-04-10 13:36:46 -0700 (Sat, 10 Apr 2004) | 1 line
0
-
0
-Removed markdown reference source
0
-------------------------------------------------------------------------
0
-r1 | deveiant | 2004-04-10 13:35:02 -0700 (Sat, 10 Apr 2004) | 1 line
0
-
0
-Initial checkin
0
+ * converted tests to specs, cleaner suite
0
+ * break lib/bluecloth.rb into submodules under lib/transform/
0
+ * deleted legacy files (tests/, test.rb, docs/, experiments/, install.rb, ...)
0
+ * import latest original Markdown.pl for reference (and testing)

Comments

    No one has commented yet.