vote up 7 vote down star
4

I have implemented the WMD control that StackOverflow uses into a project of mine, it almost works like a charm ... but ... when I save the changes to the database it is saving the HTML version and not the markdown version.

So where I have this in my text box:

**boldtext**

It is really saving this:

<b>boldtext</b>

Any ideas how to make it so the markdown version is saved?

flag

How are you display the text in preview and in the textarea once it has been saved to the database? Can you share code sample? – Picflight Aug 26 at 17:29
I actually save both versions to the database, both the mark down and html version. I use Markdown.Net to do the encoding on the server side. – mattruma Aug 26 at 20:25

1 Answer

vote up 5 vote down check

Before you include wmd.js, or whatever you've named the WMD Editor Javascript locally, add one line of JS:

wmd_options = {"output": "Markdown"};

This will force the output of the editor to Markdown.

link|flag
Worked like a charm! Thank you! – mattruma Sep 23 '08 at 18:07

Your Answer

Get an OpenID
or

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