Demo: http://jonschlinkert.github.io/remarkable/demo/
Repo: https://github.com/jonschlinkert/remarkable Everyone who tried to extend existing markdown js implementations can note, that all internal logic there is pinned with nails. That makes next to impossible to write extentions. You can patch output, but that can not guaranty correct html after processing. This can be solved by external html validators, but such solutions are heavy and possible on server only. We decided to write a new project from scratch, to solve a lot of problems at once: 1. Users should not depend on package developpers. Parser should be extendable. 2. Flexibility should not cause speed loss. 3. Follow CommonMark spec. 4. Output should be good out of box, without additional processing. 5. Browser support :) I think, result is interesting. All critical parts of `remarkable` are written in monomorphic style. Without sugar like "typorgafer" and "linkifier" speed is faster than in `marked` & `stmd.js` (and that's with not cheap plugins system). Also, if you don't like some extentions - it's possible to restrict processing rules by whitelist. Now we are collecting users feedback. Enjoy! -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/7fdde83d-9cd8-4008-8a8d-781812b93f67%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
