markdown-js
markdown-js copied to clipboard
A Markdown parser for javascript
I was looking for a new markdown library, since `chjj/marked` is built entirely using regex, which means it completely fails at parsing URLs with parentheses in it (wikipedia's full of...
At the fourth level lists stop to nest, it happened to me with an example like this: http://pastebin.com/YAWe3Tzq I would expect that lists can be nested recursively as deep as...
Input: ``` ***something*** ``` expected output: ``` something ``` actual output: ``` *something* ``` Using latest browser release
Per bower/bower.json-spec@a325da3
Looked through the issues, not sure if i missed it, but i could not find any that addresses this error: ``` TypeError: undefined is not a function (evaluating 'this.toTree(s,[])') ```...
Showing `Uncaught SyntaxError: Unexpected token )` in Google Chrome 40.0 It seems to be the problem of the keyword `void`.
The last release was in 2013, any chance a new one could be updated? Even better would be to have a continually updated dist/ directory.
https://www.npmjs.com/package/markdown
Given the following input: ``` markdown this is a **paragraph** ``` markdown (along with stmd - see jgm/stmd#88) outputs: ``` html this is a paragraph ``` Gruber, (and [chjj/marked](/chjj/marked)) on...