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

🏭 The most lightweight, customizable React markdown component.

Results 172 markdown-to-jsx issues
Sort by recently updated
recently updated
newest added

When the very first thing I start to write in markdown is source then application crashes. ``` [1]: http://localhost:3000 ``` This results in: ``` Error: React.cloneElement(...): The argument must be...

#### Observed ``` 1. Foo 1. Foo *2. Ba3* **3. Baz** *2. Bar* **3. Baz** ``` results in: ![image](https://user-images.githubusercontent.com/1517125/127016230-5f9b5e65-1f46-471c-a772-0ae1299f0ebb.png) (tested on https://probablyup.com/markdown-to-jsx/) #### Expected Above code results in sth like:...

The following markdown results in the content of the `figure` element being wrapped in a `` tag when it should not: Input: ```md Test ![Uh - oh](//placehold.it/200x200) Test ``` Output:...

It seems to be currently not possible to add JSX components to the overrides with the same leading substring in the component names. I created PR https://github.com/probablyup/markdown-to-jsx/pull/364 where I added...

Hi! First of all: thank you for the great library! We noticed a small bug the other day. We wanted to post an inline link as follows: `This in an...

bug

Hi there, awesome light little library :) I've identified a few issues with code blocks, they are as follows: - overrides `code` does not differentiate between the 3 code types...

Hi, this markdown ``` * hello - bye * **hello** - bye ```` ![grafik](https://user-images.githubusercontent.com/20370607/106752156-65f2c280-662a-11eb-8817-f36af752794b.png) shouldn't it be? ![grafik](https://user-images.githubusercontent.com/20370607/106752244-86228180-662a-11eb-825d-74fe51841efd.png) I need the second one. Any ideas? Thank you

For example right now if i pass in the text " \_hello\_ " it will get rendered as _hello_ Is there anyway i can disable this so that " \_hello\_"...

Hi, I found an issue with parsing HTML tags. When HTML tags are presented one after another e.g. `link text` the output doesn't include space between tags. What interesting spaces...

Hi, I'd like to know if it's possible to add a different className in this nested list. I'd like to add a class like outer to the outer UL and...