Questions tagged [wmd-markdown]

12 questions
8
votes
4 answers

Markdown editor with tables

Is there any client-side markdown editor that could work with tables? I just need something like Stack Overflow's editor or markdownDeep -- both of those are great. But these editors doesn't let me customize tables, like Dreamweaver does it with…
user1321556
  • 81
  • 1
  • 2
5
votes
1 answer

Markdown failure in Internet Explorer

I'm using this jQuery Markdown from arhpreston for my purposes. My jQuery code(though irrelevant) is: var converter = new Markdown.Converter(); $(document).ready(function(e) { $('#content').html( converter.makeHtml($('#content').text())…
hjpotter92
  • 78,589
  • 36
  • 144
  • 183
4
votes
1 answer

Is there a WMD-like WYSIWIG Editor that supports Markdown Extra?

I have some editor pages in my CMS that use the WMD control for inputting and displaying content written in Markdown. We have now switched to Markdown Extra (because we needed tables) but WMD can't handle the new syntax to support tables. Is there a…
immutabl
  • 6,857
  • 13
  • 45
  • 76
2
votes
2 answers

PHP Sanitized markdown - html output

I have WMD editor on my site, and i store the markdown in the DB. But before i send the markdown to database i filter it with mysql_real_escape_string, like that: $to_database = mysql_real_escape_string($_POST['markdown']); And it's okay. But now I…
1
vote
1 answer

Where is the latest version of WMD editor?

The latest version of WMD on derobin's GitHub page is quite old and seems to be unmaintained. Following the social graph, the OpenLibrary WMD page looks much newer but still isn't the newest. Where is the authoritative source or blog or website? So…
Eric Falsken
  • 4,796
  • 3
  • 28
  • 46
1
vote
0 answers

MathJax WMD-markdown updates only on alternate keystrokes

I am trying to get MatJax and Markdown work together, by using almost standard code I was able to get it working but now I am facing a weird issue. My WMD preview is updated only on alternate keystrokes...!! The javascript to init WMD is as…
user2014387
  • 33
  • 1
  • 4
1
vote
1 answer

how to get formatted data(by wmd editor) in textarea

I want to show the data or about us to edit like stackoverflow so i used wmd editor i also used the markdown.php for markdown and its working fine. but when i fetch data in text area to show in wmd editor for that i am doing
NullPoiиteя
  • 56,591
  • 22
  • 125
  • 143
0
votes
1 answer

Which fork of jQuery-compatible WMD is the fork to pay attention to?

There seems to be little organization or effort to lead a stable or most up-to-date version of the jQuery-compatible version of WMD. https://github.com/openlibrary/wmd/network The latest version of the Open Library branch is almost a year old and…
Miz
  • 21
  • 3
0
votes
1 answer

Force WMD to use built-in preprocessor

I use wmd to all my projects but lately I wanted to add support for fenced code blocks and I saw that it is possible to achieve with preprocessors. I'm using something like this: const content = wmd(myMarkdownString, {preprocessors:…
lukaszkups
  • 5,790
  • 9
  • 47
  • 85
0
votes
1 answer

Highlighted code in a post are affecting my website

i am using my WMD editor to as markup editor and google prettify to highlight syntax marked by WMD editor,i am using yii as a framework and whenever i include some html in my code,in stead of being highlighted they are being interpreted as part of…
Eliethesaiyan
  • 2,327
  • 1
  • 22
  • 35
-1
votes
2 answers

WMD - How to get the generated\Markdown HTML Code

well i got WMD but i am unable to learn how to get the generated HTML\Markdown Code.... i want to send it to the DB... thats why i am using PHP....