I am using Markdownsharp v1.13.
The following statement:
new Markdown().Transform("<section id=\"archives\">\r\n <p>\r\n No archives.\r\n </p>\r\n</section>")
Is wrapping the result into a p element:
> "<p><section id=\"archives\">\n <p>\n No archives.\n
> </p>\n</section></p>\n"
Why on earth is it doing that? I thought it should completely ignore, the html tags?
Thanks for your help.