tags:

views:

119

answers:

1

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?

+2  A: 

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.

Marcelo Cantos
ok thx and for markdown implementation, i will use markdown.net? is there a newer version of it? or will that be fine?
jiewmeng