is there a way i can have markdown in .NET/C# application?

i wonder shld i store the data in HTML or markdown text? if i store the data in HTML, when the user edits, they will see HTML, but if i store in Markdown, everytime i display, i got to convert to HTML(slow?) or store the HTML in another column, will it waste too much space?

i understand markdown.net maybe used for this site. isit true? but heard its not updated since 2004/5?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Store the markdown and use memcached or similar to cache the result of converting to HTML.

Check out this answer for advice on .Net markdown engines.

link|improve this answer
ok thx and for markdown implementation, i will use markdown.net? is there a newer version of it? or will that be fine? – Jiew Meng May 25 '10 at 12:55
feedback

As the first link in the search request "markdown c#" at googe refers to the given question, I should supplement it with the MarkdownSharp library, which is used on StackOverflow. It is distributed under the MIT license, well tested and it is used on all the stack-sites.

This is also available via NuGet (an open source package installer from Microsoft) and therefore can be installed via Visual Studio 2010. Right-click "References" and click "Add Package Reference" and select MarkdownSharp.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.