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 I add a custom HTML for links like this: `http://example.com/` The render is renderer detects first the text http://example.com/ and converts it to link, after that it converts the...

Hi everybody ! I don't know exactly if it's a bug or if it's a weird behavior for me ^^ I am developing a Gatsby website, and I want to...

help wanted

hey thanks for your repo i was unable to get ids for heading tags,when using slugify with overrides with an custom component any sort of insight is helpfull

Whilst the name does imply converting `markdown` to JSX, the readme does say > Arbitrary HTML is supported and parsed into the appropriate JSX representation without dangerouslySetInnerHTML When the following...

When you show this example in the docs, it looks like you were able to specify that this codeblock is javascript in the markdown.. I want to use the code...

I'm using a string like this ``` '' ``` I expect `data` is `[{ a: [{ b: 1 }] }]`, unfortunately the result is `{[{ a: [{ b: 1 }]...

I can see from the Read.me file that I can specify HTML entities to be parsed, but how can I parse HTML decimal codes like `'` (`'`)?

```JavaScript const options = { overrides: { h1: { component: h1Comp, }, // any other tags use this default: { component: defaultComp, } }, }; ``` Appreciate if there is...

This would be an enhancement to #236 to allow chars like `'` to be replaced as well. I'm happy to submit a PR if you think this is a valid...

Is there a way to remove the outer div/span created? Example: aaa bbb will result in ``` aaa bbb ``` I just want the 2 paragraphs...