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

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,[])') ```

Could you add Common Markdown as an option: http://jgm.github.io/stmd/spec.html One of the applications I use relies on this library for their markdown parsing, and there's been a lot of talk...

This follows from https://github.com/evilstreak/markdown-js/pull/34, opting to disable HTML escaping except in code blocks. I understand that it's been stated to be undesirable by the maintainers, but I think it is...

The first instance of inline link from the code bellow returned as expected, but the second one does not: ``` This is an [example inline link](http://lmgtfy.com/) and [another one with...

I'm seeing some extra elements in the following input: ``` 1. blah blah 1. blah 1. blah blah blah 1. blah ``` With most previews, this renders as follows: 1....

Having a greedy regexp in `oneElement` had major performance issues in Chrome when parsing very large inline blocks. This re-write does not change any functionality but improves this performance issue....

Matching URLs with regular expressions is tough! However, this approach fixes issues when linking to absolute URLs with absolute image URLs inside them.

While sanitization is an important feature of a markdown parser, it is sometimes useful to disable it. For example, on Discourse we have our own sanitizer that is executed further...

Let's say I want to implement a custom tag. For example if I type 'Question:', I'd like the text that follows to be blue. Is that something I'd do in...

``` ReferenceError: Can't find variable: exports (markdown.js: 1737) ReferenceError: Can't find variable markdown (index.html: 18) ``` Here's the entire index.html: ``` Markdown.js Example Type **Markdown** here. function Editor(input, preview) {...