A bug I reported previously still exists. The module adds a bunch of line breaks (real <br> tags) into the code. When someone creates a bulleted list for example, and saves it, everything is modified (it still looks fine, but already has additional <br>s). But if he opens it again in edit mode, there are line breaks between each line. So the original code, that looked like this (before saving the first time):
<p>My bulleted list!</p>
<ul>
<li>line 1
<li>line 2
<li>line 3
<li>line 4</li></ul>
After save, looking at the wiki in the normal browsing mode, the code has already transformed to this:
<p>My bulleted list!</p>
<ul>
<li>line 1 <br /><li>line 2 <br /><li>line 3 <br /><li>line 4</li></ul>
</span>
<br />
<br />
Note all the <br> tags that shouldn't be there. If I then go to edit, and without modifications, save, it adds more <br> tags:
<p>My bulleted list!</p>
<ul>
<li>line 1 <br /><br /><li>line 2 <br /><br /><li>line 3 <br /><br /><li>line 4</li></ul>
</span>
<br />
<br />