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?
|
show 2 more comments
feedback
|
|
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. | |||||
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. | |||
|
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/ | |||
|
feedback
|
pretag. – Justin Johnson Apr 20 '10 at 4:06