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?

link|improve this question

1  
Correct me if I'm wrong, but I don't think either of those libraries convert HTML to markdown. I don't think it's possible, in general, since the markdown->HTML convertion is lossy (that is, data is lost in the conversion that would be required to convert back again). – Dean Harding Apr 20 '10 at 1:20
4  
Why do you think that markdown->HTML is lossy? I think HTML->markdown is lossy, because every markdown syntax has its HTML equivalent, but not vice versa. – Ethan Apr 20 '10 at 1:38
1  
@Nick: Also, some HTML tags has more than one markdown equivalents, such as <h2> can be either ## or ----. But what I am looking for is something that can convert HTML to "standard" markdown, i.e., stripping out extra returns and unsupported HTML tags, use ---- for all headings, and others. – Ethan Apr 20 '10 at 2:23
6  
Complete and accurate restoration is not part of the OP. Lossiness of markdown to HTML is irrelevant unless the OP specifies. At any rate, whitespace is lost when rendering HTML as it is, unless of course, it's in a pre tag. – Justin Johnson Apr 20 '10 at 4:06
1  
Apparently, after many research, it doesn't exist. I should do a "DIY answer" :) – Shikiryu Dec 22 '10 at 10:13
show 2 more comments
feedback

3 Answers

Theoretically, you can convert it back. You'd have to write your own DOM traversal code and convert the HTML back to Markdown.

Generally Markdown is thought to be the human readable/writable source of the information that is converted to HTML for further markup and styling.

HTML can be much more complex than Markdown and can be indefinitely nested and partitioned into tags. This is why it's so questionable to write a general purpose converter which reliably converts HTML back to Markdown. Just imagine all the whitespace and paragraphs going bye-bye and possibly causing a terrible mess for the human eye.

My suggestion is: Unless you generate originating HTML yourself and know what it consists of, don't convert it back to Markdown. Keep the Markdown version all the time and convert to HTML when needed.

link|improve this answer
6  
One case where you'd want to convert HTML -> Markdown is in a WYSIWYG editor. Most of them provide the text in HTML or XHTML. It'd be nice to convert that into MarkDown for storage. – Jordan Reiter Jul 25 '11 at 22:47
feedback

I've started a project to do this:

http://domchristie.github.com/to-markdown/

It's still in its early stages, so has not been heavily tested, but it's a start.

Feedback/contributions welcome.

link|improve this answer
feedback

I just launched a service that does exactly that: Akayame (stands for "Yet Another Markdown Editor").

While the main purpose of the app is to allow easy editing in Markdown, with a preview that actually works (highlights the paragraph being edited), there is also a "converter" that lets one paste HTML and convert it down to Markdown.

The converter is written in XSLT and uses Saxon-CE, so it's not technically JS (although it runs in the browser).

Check it out at http://akaya.me/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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