From: Artem Y. <ne...@gm...> - 2008-08-21 21:26:22
|
Kjell Magne Fauske wrote: > Dear Python-markdown developers, > > I have been playing with the development version of Markdown recently > and I love it. There are, however, a few bugs in the mainline version: > Thanks :) > 1. Converting an empty string raises an exception: > Fixed it :) > > 2. The codehilite extension is broken. The code snippets are inserted > at the start of the document. This bug is triggered by markdown's test > suite, so you are probably aware of this one (the codehilite test was > uncommented in the main test file). > > 3. When converting a code block a newline and several spaces are > inserted between the <pre> and <code> tag: > It's because in indentation function we process all nodes in same way, I'll try to fix it, and we also will need to update tests after this. |