MarkdownSharp 和无效的 html
我运行了这段代码
var m = new MarkdownSharp.Markdown();
var sz = m.Transform("Test **test** *test* boo");
Console.Write(sz);
并得到了这个输出。我做错了什么,因为
不是有效的 html。我该如何摆脱它?
<ol>
</ol>
<p>Test <strong>test</strong> <em>test</em> boo</p>
<ol>
</ol>
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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最新版本没有这个问题。
The most recent revision does not have that problem.