wmd

Customizing MWD for math equations

HI, I want to customize the WMD editor (or wmd-new) to convert TeX equations like $\frac{2}{3}$ to Google Charts API images () Is it possible to customize how the HTML is generated? ...

WMD Output Issue

I have an issue with my google app engine whereby I am using wmd to input text and save text. In preview mode, I can see the wmd formatted correctly as html, but when I switch to output, I just see unformatted wmd. I have python-wmd installed, but am assuming that there is some sort of issue whereby python-wmd is being bypassed and ign...

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. ...

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 expected markdown, my TextBox at server-side contains the HTML formatted version of the markdown: <h1>testing</h1> How do I get the pure ...

how wmd avoid the js injection?

How to avoid the wmd editor's js injection? Code like below: < a href="http://www.abc.com"&gt;abc&lt;/a&gt; <br /> <script>alert('hello')</script> ...

Can't seem to save the markup version of the text using wmd-editor

I'm running into an issue when I am saving the context of textarea using the wmd-editor it keeps wanting to save it as html. I have the following code: The input elements... <p> <%= this.Html.TextArea("Body", topic.Body, new { @class = "big" })%> </p> The script to make the out put markdown... <script type="text/javascript"> ...

Whitelisting, Preventing XSS with WMD Control in C# .NET

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 using WMD to get user input and I am displaying it with a Literal control. Since it is uneditable once entered I will be storing the HTML and no...

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 way like *bold* or in some other format? Why can’t I just do an html encode? Sorry if I sounded very naïve. ...

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 how to edit it such that it's pathing correctly. ...

WMD editor freezes IE7 for 3 seconds on load

Hello all, I am using the WMD editor's original code(not the stackoverflow version) since I need multiple of 'em on the same page and stackoverflow's version makes heavy use of element IDs internally since they aren't going to be having more than one editor instance per page. The code runs fin in FF 3.5, etc.. However, when I run it in ...

wmd editor, why does it keep showing html instead of just going straight to markup

hi, im wondering how wmd is supposed to work, when i type in the textarea the text doesnt have html, but once the text is stored in db it turns to html. wmd also shows all this html when reloading the content? is it supposed to work like this? Do I have to sanitize the text before its put into the db? if so how? I thought wmd doesnt d...

wmd editor sanitizing

hi, i am trying to find ways to sanitize the input of wmd editor Specifically, I am trying to make HTML tags only available in the <code>tags that wmd generates. Is that possible My problem is that the following code is rendered as html which is vunerable to potential xss attacks e.g. <a onmouseover="alert(1)" href="#">read this!</...

align WMD editor's preview HTML with server-side HTML validation (e.g. no embedded javascript)

There are many SO questions (e.g. here and here) about how to do server-side scrubbing of Markdown produced by the WMD editor to ensure the HTML generated doesn't contain malicious script, like this: <img onload="alert('haha');" src="http://www.google.com/intl/en_ALL/images/srpr/logo1w.png" /> But I didn't find a good way to plug ...

Which StackOverflow-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 StackOverflow-style MarkDown editor. After researching this topic for the last few days, I realize there are numerous forks of the base WMD editor, some with a few basic enhancements and some with serious differences from the StackOve...

Convert wmd editor content in html format

Hi, I am very new to using this wmd editor. In simple way, i am using this editor in my page using asp textbox with "wmd-input" class. It is perfectly behaving like a wmd editor. But when enter some data and do some formatting like bold, italic etc and read editor's content from server side, i can see that the data in plain text. I...

mediawiki markup equivalent of WMD live-previewing editor? (not WYSIWYG)

Anyone have a recommendation for an editor like the WMD editor, but using MediaWiki markup instead of Markdown? Our site is already using MediaWiki markup but we want a slicker editor without changing markup completely. Requirements include: live preview of formatted text underneath the markup you're typing a toolbar for common forma...

How can i get Simple Plain Text from WMD Editor?

I'm able to get Markdown and html formated text from WMD editor. In my requirement i also need to get plain text from WMD Editor. I would like to explain a simple example. In StackOverflow we will see markdown text while typing description in wmd editor, in preview we are able to see the formated text. In Question Page, with out this ma...

how to emininate broken images from WMD preview same as Stackover flow does.

When we insert a image url in wmd editor, if that image doesnt exists, then i'm not suppossed to display that image in preview. What do i need to do. plss suggest. Thanks, ...

Preserving an html/non-html version of a WMD textarea in Django?

I setup the default wmd.js to my admin textareas for my Bug models. Now it gets saved as HTML and when I go to edit the entry in the admin, I see the literal html: <p>foo</p> What strategy could I use so it only renders this <p>foo</p> in the views/html instead of the edit view? ...

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? ...