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

If a preprocessor needs to remove a tag, this patch allows it to do so by making the tag null or undefined.

It was a bug, when gruber dialect call 'lists' method and 'lists' call horizRule but with wrong context. Thus I had an error in browser. Here are its text and...

According to the [Maruku metadata proposal](http://maruku.rubyforge.org/proposal.html), the following: ``` ### Header ### {: #myid} ``` ...Should translate to: ``` Header ``` However: ``` markdown.toHTML('### Header ### {: #myid}', 'Maruku'); ```...

There are many dialects of Markdown. Everyone writing Markdown is going to be using one of those; they therefore need to know whether that dialect is supported by this library....

I was using `showdown.js` until recently, but I want to try out markdown-js. Is it possible to render something like this: ``` ^^http://youtube.com/watch?v=somestring ``` into this: ``` ``` There is...

Hi, could it be possible to have default dist version included in the repo ? So I don't have to build it after a `bower install` ? Thx by advance

Would it be possible to add start and end position of the original source to the JsonML tree and the generated HTML as classes or data attributes? I would use...

feature

When converting ``` markdown [foo](bar) ========== ``` to HTML, the `.toHTML` method returns ``` html [foo](bar) ``` instead of ``` html foo ```

I would like to see support for specific sections that are not processed by markdown. This would solve the mathjax issue: https://github.com/evilstreak/markdown-js/issues/129, but this may also be usefull for other...