Tagged Questions
42
votes
6answers
8k views
Is there any good Markdown Javascript library or control?
I want to build a site where the user can enter text and format it in Markdown. The reason I'd like a Javascript solution is because I want to display a live preview, just like on StackOverflow.
My ...
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 ...
16
votes
8answers
7k views
Javascript to convert Markdown/Textile to HTML (and, ideally, back to Markdown/Textile)
There are several good Javascript editors for Markdown / Textile (e.g.: http://attacklab.net/showdown/, the one I'm using right now), but all I need is a Javascript function that converts a string ...
13
votes
3answers
223 views
What is the canonical implementation of markdown?
The problem with writing my own Markdown parser in Clojure is that Markdown is not a well-specified language. There is no "official" grammar, just an informal "Here's how it works" description and ...
9
votes
3answers
1k views
Is there javascript to convert HTML to markdown?
There is showdown.js to convert markdown to HTML, and PHP Markdown to convert markdown to and from HTML. My question is, is there javascript library to convert HTML to markdown?
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 ...
6
votes
1answer
1k views
What is a good client side markdown editor?
I am using markdownsharp for a javascript client i found http://wmd-editor.com/ and heard it is out of date. I found this and saw it has the same files but when replacing the source with the ...
6
votes
2answers
2k views
JavaScript libraries for Markdown, Textile and others; Anchor references
I need a javascript library to convert structured ascii text to html on the fly.
I am especially interested in the following point:
I would like do use anchored links inside pages, see ...
6
votes
2answers
494 views
Markdown for .NET? How does SO render it on the fly?
I'm just getting into Markdown and think it's the bee's knees. I'm working in ASP.NET (MVC) and am wondering if there are any good .NET libraries for Markdown, and am also curious how SO renders it on ...
6
votes
3answers
734 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 ...
4
votes
2answers
95 views
Markdown -> Showdown bug in detab regex?
I'm looking at Gruber's original Markdown implementation here and the Showdown implementation here.
I'm comparing the _Detab function in each. I'm giving each the following string
"Where\tis ...
4
votes
1answer
167 views
How do you implement a code button to format text in a textarea?
So, I am using StackOverflow's own MarkdownSharp on my blog and I love it. I now want to implement a code button exactly like the one here on SO. I can't seem to find the javascript that fires when ...
4
votes
1answer
194 views
Can someone explain last year's reddit exploit to me?
Last year a user managed to inject arbitrary javascript into reddit's markdown syntax. Can someone explain how this was done and how I can test whether my site is similarly vulnerable?
4
votes
3answers
245 views
How would you go about auto-detecting Textile versus Markdown?
I'm considering supporting both Textile and Markdown on a current project. I would prefer not forcing users to choose one or the other. Is there a way to auto-detect which the user is using? How would ...
3
votes
1answer
94 views
What are the 'corner cases' in differing markdown implementations?
The author writes the following about the differences between different markdown implementations:
The result is that there are a lot of Markdown parsers in a lot of languages, and they all give ...
3
votes
1answer
120 views
How does the WMD editor like the one StackOverFlow uses work?
I'm interested in knowing how does the text you type on the text box doesn't require a page refresh?
Some similar alternatives include:
lixlpixel
But they tend to do a page refresh every time a ...
3
votes
2answers
848 views
Markdown parser in Javascript
Does anyone know a markdown parser in Javascript ?
PS : Actually, I do this with request to server to parse it, but a client side parser would be better :) .
Edit : If there is no one, I will use ...
3
votes
1answer
140 views
How can I disallow all HTML using markdown (PHP and JS)?
I'm using the PHP markdown library: http://michelf.com/projects/php-markdown/ and the Javascript markdown library: http://attacklab.net/showdown/
I want to disallow all HTML, both the versions of ...
3
votes
4answers
587 views
I seek parser markdown-file for presentation
I search web-based markdown-file parser to presentation.
I want to presentation from online markdown-file, realtime parse.
Because I want to manege markdown-files on git repository like github.
I ...
3
votes
1answer
278 views
Markdown And Escaping Javascript Line Breaks
I am writing a markdown compiler in Erlang for server-side use. Because it will need to work with clients I have decided to adopt the client side library (showdown.js) as the specification and then ...
2
votes
1answer
56 views
How to Highlight C# Syntax from Markdown Text in an MVC3 View
I have an MVC3 web app allowing team members to post and share code snippets. It currently uses PageDown (client-side) and MarkdownSharp (server-side) to handle the text in "markdown" text for ...
2
votes
2answers
89 views
Can't convert markdown into HTML using StackExchanges's PageDown
I have a method of storing straight markup code (generate by PageDown's editor) into a database. On another page, I grab the markup from the database and run it through the markdown converter, however ...
2
votes
1answer
236 views
MultiMarkdown to HTML parser in Javascript
I have seen some Javascript parsers to convert Markdown to HTML. I am not able to find any that would do the same for MultiMarkdown.
Are there anything like this available.
Thanks
2
votes
0answers
77 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
435 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
3answers
779 views
Embed javascript in markdown
I'm using the Maruku markdown processor. I'd like this
*blah* blah "blah" in [markdown](blah)
<script src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
...do ...
1
vote
1answer
48 views
Handling Code Blocks with Markdown (Pagedown)
I'm betting I'm using something incorrectly here...
My MVC3 application uses Pagedown to provide a javascript text editor, markdown converter, and live preview. I use its "santizer" object to strip ...
1
vote
2answers
69 views
JavaScript Regex for Code Fencing in Markdown
I'm trying to add support into showdown.js for code fencing, but I'm still sort of a noob at regex. Code fencing, if you don't know, is like this:
```javascript
alert('hello world');
```
Then it'd ...
1
vote
0answers
17 views
Is there any Javascript variant of Trac's WikiFormatting?
I am current using the showdown.js for client-side markdowns. I find that the WikiFormatting of Trac is more feature-rich for my kind of app. Does anyone know any JS implementation of the same?
1
vote
0answers
39 views
What options are out there for an Cross DOmain WYSIWYG editor?
I'm writing a 3rd party API for use in client websites and I need a text editor with some basic functionality. It needs to be WYSIWYG as the end user is non technical. I've looked around and the ...
1
vote
2answers
124 views
Javascript API documenting framework with lightweight mark-up
I'm seeking a Javascript API documenting framework with features similar to JSDoc, but would use easy-to-type restructured text or markdown in the code comments (not html)
Bonus: would integrate well ...
1
vote
1answer
258 views
Markdown previewer
I used python markdown with django, it's works perfectly, but it is not enough html previewer in the admin panel. Can't find any markdown previewer (I don't need full converter). Please, advise a ...
1
vote
1answer
133 views
browser side javascript markdown fit for server side upskirt
https://github.com/tanoku/upskirt
Upskirt has optional support for
several (unofficial) Markdown
extensions, such as non-strict
emphasis, fenced code blocks, tables,
autolinks, ...
1
vote
0answers
139 views
MultiMarkdown to HTML in iOS
I am looking for a library that would convert Multimarkdown text to HTML. Is there any option available?
A javascript parser would be better I think.
Thanks
1
vote
2answers
192 views
What are the downsides of delegating Markdown parsing to the client side?
I'm planning on including Markdown in a coming project. In the past, I've just used a pre-packaged server-side Markdown parser, re-sanitized the HTML output (an unnecessary step?) and shipped it off ...
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
61 views
Sidebar missing after adding a custom decorator to a form element
the side bar is in the layout.phtml file. i am very confused why does adding 1 decorator to my form, cause my sidebar ... hmm actually its every thing after that section#main - i am using HTML5 - to ...
1
vote
1answer
127 views
How do I insert text at the focus into a markitup editor with javascript?
I've implemented markitup to handle users entering markdown text. I want to replace the default image insert command with a nice jquery routine that lets the user browse for an image. I'm able to edit ...
1
vote
1answer
113 views
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?
1
vote
2answers
382 views
wmd - markdown editor - how to assign it to an arbitrary text field?
If any of you have ever used wmd markdown editor (which is like the editor that stackoverflow uses) then maybe you are able to help me out:
WMD by default assigns itself to the first textarea found ...
1
vote
8answers
1k views
Processing Javascript RegEx submatches
I am trying to write some JavaScript RegEx to replace user inputed tags with real html tags, so [b] will become <b> and so forth. the RegEx i am using looks like so
var exptags = ...
0
votes
3answers
49 views
Formatting Buttons in jQuery for Forums
I want to do something as simple as emulate the buttons as can be seen here—albeit in jQuery and Django.
I have scoured the net and found nothing, which surprises me, but I figure it is because I am ...
0
votes
2answers
197 views
Require() function in JavaScript
When I open console of Chrome 14 and type...
require (or require(), if that matters)
I get: ReferenceError.
This means that JavaScript doesn't have that function by default, right? At least on web ...
0
votes
0answers
112 views
How to introduce Showdown.js to Markdown/Wiki tables?
In Showdown we can see support for html tables, but how to introduce to it Markdown/Wiki style tables like shown here?
0
votes
4answers
242 views
Protect against script injection using markdown
I want to protect my page when a user inputs the following:
<script type="text/javascript">
alert("hi");
</script>
I'm using ShowDown:
jQuery.fn.markDown = function()
{
return ...
0
votes
1answer
105 views
markdown subset
I am looking for a markdown parser, preferably Javascript, that I can customize. In particular, I would like to remove the option for using actual HTML tags.
I tried editing the source of showdown, ...
0
votes
1answer
105 views
Need a web-embedded editor that doesn't save in HTML
Our clients are able to edit some text on our "admin" web site, which then displays to their customers on another "client" web site. They now want the ability to add mark-up like bold, italic, ...
0
votes
1answer
141 views
What is this WMD example missing?
Take it easy on me, guys. I have no idea what I'm doing.
I cloned the Git repository for the OpenLibrary/WMD fork based on my research that led me to this question.
I opened the wmd-test.html file ...
0
votes
1answer
137 views
rich text editing, prevent embeded javascript code
I made a website using the famous symfony framework. I wanted to add rich editing feature to it. And I found TinyMCE editor. But there comed a problem: how about the user embed some javascript code ...
0
votes
2answers
745 views
Parallel scroll textarea and webpage with jquery
This is both a conceptual and how-to question:
In wiki formatting, or non WYSIWYG editor scenarios, you typically have a textarea for content entry and then an ancillary preview pane to show results, ...