tags:

views:

49

answers:

1

I ran this piece of code

var m = new MarkdownSharp.Markdown();
var sz = m.Transform("Test **test** *test* boo");
Console.Write(sz);

and got this output. I am doing something wrong because <ol></ol> is not valid html. How do i get rid of it?

<ol>
</ol>

<p>Test <strong>test</strong> <em>test</em> boo</p>

<ol>
</ol>
A: 

The most recent revision does not have that problem.

acidzombie24