Tagged Questions
The wmd tag has no wiki summary.
27
votes
2answers
2k views
Which Stack Overflow-style Markdown (WMD) JavaScript editor should I use?
Background
I'm working on an application which requires user-entered content, and I've decided to use a Stack Overflow-style Markdown editor. After researching this topic for the last few days, I ...
13
votes
4answers
3k views
Convert HTML back to Markdown for editing in wmd
I am curious to do what happens when you edit a post on this site.
I am using wmd for my markdown editor, of course when I goto edit, I get the HTML it generated not the markdown like on ...
10
votes
1answer
188 views
Adding a custom button to WMD (Stack Overflow) editor
How can I add a new button in the WMD editor, like the code button? If I click on the button <info></info> tag will add on the selected text like code button.
10
votes
4answers
613 views
Why do I need Markdown?
Why do I need a Markdown with a front edit editor like WMD? What does the markdown do to the content that’s sent from the WMD editor?
How does Markdown store the content in the backend? Is it the same ...
9
votes
4answers
2k views
WMD markdown editor - HTML to Markdown conversion
I am using wmd markdown editor on a project and had a question:
When I post the form containing the markdown text area, it (as expected) posts html to the server. However, say upon server-side ...
9
votes
2answers
343 views
How do get WMD-Editor to post Markdown to the server and not HTML?
it seem that WMD-Editor is posting HTML to the server instead of the markdown? How can i get it to send the Markdown?
9
votes
2answers
898 views
How do you store the markdown using WMD in ASP.NET?
I have implemented the WMD control that Stack Overflow 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 ...
7
votes
4answers
1k views
WMD in Django Admin?
I know how to use WMD and other such javascript editors in regular django forms using widget=. However, how do I use WMD for text fields in the Django admin? On top of that, how do I use it for the ...
7
votes
2answers
433 views
Hosted wiki using StackOverflow-like editing tools?
We're starting developer documentation for one of our projects, and I'd like to set it up as a hosted wiki.
There will be lots of code samples, and the WMD/Prettify combination used here on ...
6
votes
3answers
558 views
Should i sanitize markdown?
For my post entity i store both HTML and MARKDOWN in database (HTML is converted from MARKDOWN). HTML is for rendering on page and MARKDOWN for editing ability (with WMD). I sanitize HTML before ...
6
votes
4answers
853 views
Multiple WMD editors (SO forked version) on one page?
To be clear, I'm referring to the usage of stackoverflow's forked WMD, not the original version from attacklab.
I'd like to use the forked version, however it seems that the div id's which are used ...
6
votes
3answers
726 views
Ideas on implementing Stack Overflow-style comments
I like the Stack Overflow comment UI a great deal and I'm looking into implementing the same thing on my own website. I looked at the code and it looks like the main tool here is WMD, with the JQuery ...
5
votes
1answer
137 views
How can I get simple plain text from the WMD editor?
I'm able to get Markdown and HTML formated text from the WMD editor. In my requirement I also need to get plain text from the WMD Editor. I would like to explain it with a simple example.
In Stack ...
5
votes
2answers
269 views
Align the WMD editor's preview HTML with server-side HTML validation (e.g. no embedded JavaScript code)
There are many Stack Overflow questions (e.g. Whitelisting, preventing XSS with WMD control in C# and WMD Markdown and server-side) about how to do server-side scrubbing of Markdown produced by the ...
5
votes
2answers
170 views
How to combine WMD and prettify, like Stack Overflow?
Prettify needs class="prettyprint" to be add to <pre> or <code>. How to let WMD do this?
4
votes
2answers
490 views
How to hide wmd editor initially?
<div style="display:none;">
<div id="wmd-editor" class="wmd-panel">
<div id="wmd-button-bar"></div>
<textarea id="wmd-input"></textarea>
...
4
votes
2answers
290 views
Best version of the WMD to use in a project?
I'm interested in using the WMD editor in another project* but I'm not quite sure which version I should go with.
From trawling through the Stack overflow blog I've found mention of a version on ...
4
votes
2answers
371 views
Browser dependent problem rendering WMD with Showdown.js?
This should be easy (at least no one else seems to be having a similar problem), but I can't see where it is breaking.
I'm storing Markdown'ed text in a database that is entered on a page in my app. ...
4
votes
3answers
997 views
Use “Updated WMD Editor” in textareas loaded by AJAX Forms
We're trying to use Stackoverflow's excellent WMD / Markdown editor (http://blog.stackoverflow.com/2009/01/updated-wmd-editor/, http://github.com/derobins/wmd/tree/master) on a Symfony project.
This ...
3
votes
1answer
431 views
Markdown parser for markItUp editor or stable WMD-showdown release
A bit of a long-winded question(s)...
Is anyone aware of a markdown parser for markItUp editor? I tried showdown.js but it appears there is no way to integrate it with markItUp. This is despite ...
3
votes
2answers
178 views
Is there a more current version of WMD Markdown other than derobins?
I've started using derobins wmd markdown, and I really like the way it performs and integrates with my system. I do however have one MAJOR issue whereby the <ol> the <ul> and the ...
3
votes
2answers
142 views
WMD editor sanitizing
I am trying to find ways to sanitize the input of the WMD editor.
Specifically, I am trying to make HTML tags only available in the <code>tags that WMD generates. Is that possible
My problem ...
3
votes
3answers
178 views
mooWMD is Undefined?
First off here is the code!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
...
3
votes
2answers
243 views
How do I get the value of WMD editor?
I am playing around with using the WMD Editor (http://wmd-editor.com/) in my site. I have a really simple question. When I am ready to submit the text to the server; how do I get the output of the ...
2
votes
2answers
91 views
MarkdownSharp is converting Url's that contain underscore characters
I am using MarkdownSharp in one of my projects and have noticed that if any of my Url's contain pairs of underscore characters somewhere within it, it's treated as italic and therefore replaces the _ ...
2
votes
1answer
128 views
Is this the right version to use of the WMD Markdown editor?
This Google code repository called "wmd-new" seems to be latest and most active version of the WMD Markdown editor. It has recent modification dates.
However, it has a link labeled "WMD development ...
2
votes
2answers
209 views
What actions and events cause a browser to repaint its entire viewport?
I'm trying to implement the wmd-editor from the google code repository (like the one used on stackoverflow right here) and I'm running into an issue.
As you type into the textarea, it kicks off two ...
2
votes
0answers
76 views
Adding custom buttons to WMD Editor
Is there a way to add custom buttons to the WMD Editor that extends the editor's functionality?
My ideas for various buttons I want to add are to:
Markup the selected text
Insert some predefined ...
2
votes
1answer
422 views
WMD Markdown Editor with a custom preview
I'd like to use WMD with PHP Markdown Extra. I don't need any new buttons in the editor, but I need the live preview to reflect the use of the extra markdown features, most notably tables.
Is there a ...
2
votes
1answer
114 views
How to modify menus items in WMD editor forks?
I am just getting into the WMD editor varieties out there :) Of all of them I like MarkEdit because of the ability to modify the menu items quite easily, but it doesn't do a couple of things that I ...
2
votes
1answer
63 views
Is there any WMD fork that handles multiple textareas
In addition to not being based on MooTools (1, 2), and having proper ctrl-k based code formatting support?
2
votes
1answer
130 views
WMD Markdown from MySQL to HTML server site without showing the textarea
I store Markdown code in MySQL, and I’m worried about how to convert it back to HTML without transferring it through the WMD control and using massive data transfer.
2
votes
1answer
1k views
wmd editor (jquery version) over ajax forms
i'm trying wmd editor over ajax.
here there is the bugged code
wdm code is based on openlibrary fork on github
it work very good without ajax.
but when i try to display editor over ajax form it ...
2
votes
2answers
197 views
2
votes
1answer
141 views
Problem with WMD editor
Has anyone used wmd editor?
I am having a problem with the editor in a form. Its not being configured as the editor after setting up in a form. Only the text area is shown with no editing options. ...
2
votes
1answer
544 views
How do i convert WMD markdown syntax to HTML on my site?
Am using django and am implementing WMD on my site, am just wondering how do i convert the markdown syntax to HTML for display purposes, is there some sort of function i should call to do this ...
2
votes
2answers
449 views
Stackoverflows WMD System - Where does my input become HTML?
At what stage does my input in the textarea change from being this raw text, and become HTML?
For example, say I indent 4 spaces
like this
Then the WMD Showdown.js will render it properly below ...
1
vote
3answers
66 views
How to download this google code with Tortose SVN?
I am trying to download http://code.google.com/p/pagedown/ from google code.
Having not done this before, have installed Tortoise SVN and tried various addresses to SVN Checkout.
Addresses I have ...
1
vote
0answers
22 views
Stackoverflow wmd load on click event
I'm having a problem using the wmd re-engineer script.
The problem is the div where the wmd-container sits has display:none. This causes the following errors to be outputed constantly:
Component ...
1
vote
1answer
135 views
'WMD' Web Markdown & how to Implement an image upload facility
I'm developing a site that uses MarkDown and WMD javascript tools which currently caters for images that are already hosted, but I'd like to be able to offer an image upload facility within WMD, as ...
1
vote
1answer
268 views
JavaScript code injection without a <script> tag
A client script is pulling some HTML from a server into an in-page popup (shadowbox and the like).
I suspect this is being done via jQuery's .html() somewhere.
Long story short, the following fails:
...
1
vote
2answers
116 views
This doesn't happen often: Why is this JavaScript code only broken in Chrome?
I've decided that I've fallen in love with the Markdown editor on Stack Overflow. It's a fork from showdown.js from John Fraser. I want to use this parser on a project of mine, but after analyzing ...
1
vote
1answer
88 views
1
vote
1answer
123 views
Can't seem to wrap WMD Markdown Editor inside JQuery Tabs
I'm trying to place a Markdown Editor inside jQuery-UI Tabs, but the editor is not being shown.
<% Using Html.BeginForm()%>
<div id="AddEventWizard">
<ul>
...
1
vote
1answer
244 views
How to convert markdown (WMD) text to plain text
Hello, I am saving both the markdown text and html versions of text in my database. I have a question and answer site. When users browse the questions they are viewing snippits of markdown. They ...
1
vote
0answers
38 views
How to emininate broken images from the WMD preview the same way as Stack Overflow does
When we insert an image URL in the WMD editor, if that image doesn't exist, then I'm not supposed to display that image in the preview. What do I need to do?
1
vote
0answers
148 views
MediaWiki markup equivalent of WMD live-previewing editor? (not WYSIWYG)
What editor like the WMD editor can be recommended, but using MediaWiki markup instead of Markdown? Our site is already using MediaWiki markup, but we want a slicker editor without changing Markup ...
1
vote
0answers
48 views
Using WMD in an iFrame
Anyone know how to get WMD working in an iFrame?
I'm using this version:
http://github.com/ananthakumaran/wmd/
I think it's the "top." javascript path that's messing it up - but i'm not quite sure ...
1
vote
1answer
437 views
Whitelisting, preventing XSS with WMD control in C#
Are there any problems with what I am doing here? This is my first time to deal with something like this, and I just want to make sure I understand all the risks, etc. to different methods.
I am ...
1
vote
1answer
133 views
How to capture the markdown from a WMD-Editor server side in a ASP.NET website?
I'm using an asp:TextBox as the wmd-input. As the user clicks the submit button I wan't to capture the markdown at server side as the Text property of my asp:TextBox control.
However, instead of the ...