immutabl
immutabl

Reputation: 6903

Is there a WMD-like WYSIWIG Editor that supports Markdown Extra?

I have some editor pages in my CMS that use the WMD control for inputting and displaying content written in Markdown.

We have now switched to Markdown Extra (because we needed tables) but WMD can't handle the new syntax to support tables. Is there a way of h4cking WMD to make it work with ME or should I give this up as a bad job?

Upvotes: 4

Views: 675

Answers (1)

braveterry
braveterry

Reputation: 3744

Try the MarkdownDeep Javascript edition.

Turn on the PHP Extra compatibility mode with this line:

markdown.ExtraMode = true;

This page has more info on how to use the tool.


enter image description here


Upvotes: 1

Related Questions