tags:

views:

208

answers:

2
+1  Q: 

Markdown in .NET

Is there a Third Party library available for .NET projects that can convert a markdown document into html server-side? I.e. I've stored Markdown text in a database that needs to be converted to html when it is displayed.

I know about WMD, but it only converts client-side.

+1  A: 

Markdown.NET

I believe that is what this site used at some point.


Edit

Markdown Sharp is what the site uses now.

Garry Shutler
I've looked at this library, and it's absolutely appalling. I recommend that you write something yourself.
John Leidegren
SO doesn't use Markdown.NET (at least not any more -- I've no idea if it used to). SO uses Markdown Sharp.
Drew Noakes
@Drew Noted and amended, thanks.
Garry Shutler
+1  A: 

Check out Markdown Sharp. It's the open source library that resulted from the development of Stack Overflow and is much more robust/actively developed than markdown.net.

Drew Noakes