vote up 2 vote down star
3

I'm just getting into Markdown and think it's the bee's knees. I'm working in ASP.NET (MVC) and am wondering if there are any good .NET libraries for Markdown, and am also curious how SO renders it on the fly. It must be a JavaScript library.

flag

2 Answers

vote up 2 vote down check

StackOverflow uses Attacklab's WMD, a Markdown editor. It takes care of all the on-the-fly rendering. This is the relevant snippet of code in the StackOverflow page source that does the styling magic.

    var jWmd = $("#wmd-input");
    jWmd.not(".processed").TextAreaResizer();
    jWmd.typeWatch( { highlight:false, wait:5000, captureLength: 5, callback:styleCode } );
    jWmd.rules("add", { required: true, minlength: 10 });
link|flag
vote up 0 vote down

Ah, found the answer to one of my questions:

http://stackoverflow.com/questions/134235/is-there-any-good-markdown-javascript-library-or-control

link|flag

Your Answer

Get an OpenID
or

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