vote up 3 vote down star
2

Hi, it seem that WMD-Editor is posting HTML to the server instead of the markdown? How can i get it to send the Markdown?

flag

45% accept rate

2 Answers

vote up 2 vote down check

In the master branch of the SO version, the interesting line is line 2341:

Attacklab.wmd_defaults = {version:1, output:"HTML", lineLength:40, delayLoad:false};

Change this to ask for markdown instead:

Attacklab.wmd_defaults = {version:1, output:"markdown", lineLength:40, delayLoad:false};

.. and you'll get the Markdown instead.

link|flag
vote up 1 vote down

In my version (mooWMD) you have to change the value at line 1343 from 'html' to 'markdown'.
I believe it is the same for the SO version (look for the 'output' configuration value).

link|flag

Your Answer

Get an OpenID
or

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