up vote 40 down vote favorite
26
share [g+] share [fb]

I want to build a site where the user can enter text and format it in Markdown. The reason I'd like a Javascript solution is because I want to display a live preview, just like on StackOverflow.

My site is not targeted at developers, however, so an editor control would be ideal.

I gather that on StackOverflow, the WMD editor is being used.

A quick search on Google also turns up Showdown library, which I think is actually being used by WMD.

Are there any other options? Are WMD/Showdown great tools already? What have been your experiences with the different options?

Thanks!

link|improve this question

60% accept rate
feedback

6 Answers

up vote 15 down vote accepted
+150

If you're not adverse to using Ajax to generate the live preview, then another option is markItUp!. markItUp! is a universal markup-editor, and very flexible. It does provide an easy way of creating a markup editor, but unlike WMD, it doesn't provide its own live preview.

I used markItUp!, along with a simple JSP (using MarkdownJ) for one of my open-source projects (a Markdown plugin for Roller). If you're using another server-side technology, replace that simple JSP as appropriate.

I actually starting using this before I came across WMD. I'd agree, WMD is great, but has only just been open-sourced and is, at this stage, more difficult to customize the behavior of.

link|improve this answer
feedback

We've been pretty happy with WMD. There are a few niggling bugs in it, however. Nothing major, but I would love if John Fraser (the author) made the code open source so we can fix some of them. He's promised to do so but other real life projects are getting in the way.

I do follow up with John every week. I'll post on the blog once the WMD source is finally available. Haven't been able to contact John Fraser in over a year now.

We have open sourced both the JavaScript Markdown library

http://code.google.com/p/pagedown/

and the server-side C# Markdown library

http://code.google.com/p/markdownsharp/

link|improve this answer
Thanks for the answer Jeff. I didn't even realize WMD wasn't open source... I'll keep my eyes peeled. – webmat Sep 26 '08 at 13:06
2  
What did you do about the gaping security hole? For example: <div onmouseover="alert('hi');">hi</div> The above works in the WMD demo! – superjoe30 Aug 26 '10 at 4:28
@superjoe30 That stuff is filtered on the server. – epochwolf Apr 20 '11 at 4:24
@superjoe30: See meta.stackoverflow.com/questions/95821/… -- the same applies to the JavaScript version – balpha Jul 13 '11 at 21:48
feedback

As far as I know there really isn't any other browser-based editor for Markdown, at least none as extensive as the WMD editor.

Showdown is a Markdown converter in JS, which forms the basis for the HTML preview of WMD. They're both made by http://attacklab.net/.

And as far as I know there haven't been any big complaints about both (at least not on the Markdown mailing list). So go for it.

link|improve this answer
feedback

I've not tested this, but here is another option:

Markdown wysiwyg

link|improve this answer
feedback

There is one named Showdown and it is currently hosted here: https://github.com/coreyti/showdown

And there is https://github.com/evilstreak/markdown-js :)

link|improve this answer
feedback

The question is ancient but hopefully this might help someone. I have just recently published a working version of my own Javascript markdown editor, uedit. You can find the source code here. It works on most browsers (including IE6+) and doesn't depend on any external JS libraries.

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.