Markdown parser in Javascript [closed]
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 HTML (with WYSIWYG editor).
Showdown? -
The http://attacklab.net/showdown/ site is defunct.
Showdown is now available on git, here: https://github.com/coreyti/showdown
markdown-js is awesome.
html = markdown.toHTML(someMarkdownText);
精彩评论