markdown-js icon indicating copy to clipboard operation
markdown-js copied to clipboard

A Markdown parser for javascript

Results 101 markdown-js issues
Sort by recently updated
recently updated
newest added

``` [something_withunderscore}(www.google.de/link_withunderscore] ``` ->>> HTML ``` [somethingwithunderscore}(www.google.de/linkwithunderscore] ```

For example: ``` ![Alt text](/path/to/img.jpg) ``` Results in: ``` ``` When it should result in: ``` ``` Related: - https://github.com/evilstreak/markdown-js/issues/212 - https://github.com/evilstreak/markdown-js/issues/156

It clearly isn't supported anymore, but they got the good name on npm.

I'm getting the following wrong output: ``` > require('markdown').parse('[github.com/languages](https://github.com/languages) now redirects to [github.com/trending](https://github.com/trending "Trending repositories on GitHub today")') 'github.com/languages' ``` Dunno what it is. The input syntax seems to be...

I have noticed that the Markdown parser gives incorrect results with underscores in both link titles and URLs. Example: ``` [http://example.com/a_link.html](http://example.com/a_link.html) ``` On most Markdown parsers (including Github's), you get:...

Qml [is](http://doc.qt.io/qt-5/qmlreference.html) [Here](doc.qt.io/qt-5/qtqml-javascript-resources.html) is example of how you can import js library in to qml

hope markdown-js support several textarea 0.0 Thank you

I just tried implementing this in conjunction with [bootstrap-markdown](https://github.com/toopay/bootstrap-markdown), and one of the first things I tested was how JS is stripped from links. It appears that links are not...

Hello! I'm using this library on the client-side only with RequireJS. I've added support to be able to load it as an anonymous AMD module.