evilstreak / markdown-js

A Markdown parser for javascript
7.69k stars 863 forks source link

difference between chjj/marked #90

Closed mkoryak closed 11 years ago

mkoryak commented 11 years ago

These two libraries seem to have almost the same amount of popularity, As a new user, what differences should I know about?

Other lib: https://github.com/chjj/marked

ashb commented 11 years ago

The major difference seems to be that marked goes straight from Markdown to HTML without an intermediate stage that allows you to tweak the output before turning into HTML.

It also appears that marked's selling point is speed which is nice I guess, but I'd like to see the app where markdown conversion is your bottleneck ;)