I would like to add WMD editor to my website, but I do not find anywhere the source code of it. Can anyone help me?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Search for the function makeSpritedButtonRow in wmd.js fils.(around line 913)

Let us say if you do not want the boldButton then comment the lines containing the "boldButton".

Example:

        var boldButton = document.createElement("li");
        boldButton.className = "wmd-button";
        boldButton.id = "wmd-bold-button";
        boldButton.title = "Strong <strong> Ctrl+B";
        boldButton.XShift = "0px";
        boldButton.textOp = command.doBold;
        setupButton(boldButton, true);
        buttonRow.appendChild(boldButton);

comment all the above line and your boldButton is gone.......

I have downloaded my copy of WMD here.

link|improve this answer
+1. Thanks a lot. That worked. :D – Vivek Sep 7 '11 at 13:34
I am glad...it helped you. – Radheshyam Nayak Sep 7 '11 at 17:18
feedback

The original project is; http://code.google.com/p/wmd/ (dead main site).
There is also the SO version here; http://code.google.com/p/pagedown/.

link|improve this answer
Thanks for your reply. I downloaded the source code now. I do not need few buttons like the Code sample,Block Quote,Image etc. How do I remove those buttons. Can you help me? – Vivek Sep 6 '11 at 11:23
feedback

Your Answer

 
or
required, but never shown

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