|
From: Artem Y. <ne...@gm...> - 2008-07-03 18:04:01
|
So, all the tests from test suite are working now. You can view it here: http://gitorious.org/projects/python-markdown/repos/gsoc2008 Here is timings for new markdown implementation(tests/markdown-test): construction:0.000000:0.000000 amps-and-angle-encoding:0.070000:131072.000000 auto-links:0.070000:0.000000 backlash-escapes:0.210000:516096.000000 blockquotes-with-dode-blocks:0.010000:0.000000 hard-wrapped:0.020000:0.000000 horizontal-rules:0.140000:0.000000 inline-html-advanced:0.020000:0.000000 inline-html-comments:0.030000:0.000000 inline-html-simple:0.160000:0.000000 links-inline:0.040000:0.000000 links-reference:0.080000:0.000000 literal-quotes:0.030000:0.000000 markdown-documentation-basics:0.430000:1265664.000000 markdown-syntax:2.120000:5246976.000000 nested-blockquotes:0.020000:0.000000 ordered-and-unordered-list:0.300000:0.000000 strong-and-em-together:0.040000:0.000000 tabs:0.030000:0.000000 tidyness:0.030000:0.000000 and for old markdown implementation: construction:0.000000:0.000000 amps-and-angle-encoding:0.080000:0.000000 auto-links:0.080000:0.000000 backlash-escapes:0.290000:397312.000000 blockquotes-with-dode-blocks:0.020000:0.000000 hard-wrapped:0.030000:0.000000 horizontal-rules:0.160000:0.000000 inline-html-advanced:0.030000:0.000000 inline-html-comments:0.040000:0.000000 inline-html-simple:0.150000:0.000000 links-inline:0.060000:0.000000 links-reference:0.090000:0.000000 literal-quotes:0.030000:0.000000 markdown-documentation-basics:0.520000:1384448.000000 markdown-syntax:2.500000:2031616.000000 nested-blockquotes:0.020000:0.000000 ordered-and-unordered-list:0.330000:0.000000 strong-and-em-together:0.020000:0.000000 tabs:0.040000:0.000000 tidyness:0.030000:0.000000 I think we also could speed up markdown by switching to cElementTree instead of NanoDOM. |