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

# Description The following line `![][]` raises a TypeError exception. ``` import Markdown from 'markdown-to-jsx' ![][] ``` Looks like [`refImage`](https://github.com/probablyup/markdown-to-jsx/blob/aedfa137dba1acb94f13a9f09dc3c550a2e869eb/index.tsx#L1660) has no fallback for when the reference doesn't exist while...

## Description When rendering a code block with language, it will ignore (```) that `has no character between` them. Ex: `Markdown:` ![image](https://github.com/quantizor/markdown-to-jsx/assets/81668662/a1fbae9c-bb7f-4626-815c-cfe7affef526) `Display:` ![image](https://github.com/quantizor/markdown-to-jsx/assets/81668662/5c6c6d61-9cdd-4a5a-b40c-3e6418f1a849) We can see that `(```)markdown` will...

I have a payload which freeze a tab of browser for a looong time. ```md **Heavy payload**\n\n![color-palette.png](data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABGkAAAEMCAYAAAB3FevlAAAAAX...)\n\n*... the end of it* ``` As you can see this is a png...

For some reason in my project I just get plain text even if I try to render the markdown. I've created a new project where it works fine, but in...

My attempt at fixing #524. This adds a fallback for when an image reference markdown is missing it's reference. As with links, the markdown is displayed. This also adds two...

There is some behavior that I wouldn't expect when working with markdown with html tags. I added the below tests to `index.component.spec.tsx` ``` it('test for markdown paragraph and html tags',...

Even if the code block wasn't closed, I expected there would be a code block as long as it opened. ![스크린샷 2023-09-12 오후 3 05 24](https://github.com/probablyup/markdown-to-jsx/assets/50589682/7c2731cf-6d68-4744-9261-32ae5f1e042d) but ... Unfortunately, it...

Rendering `` Gives this result: `` Please try it in the playground. [Playground](https://probablyup.com/markdown-to-jsx/)

Disclaimer: I'm picking up a ticket that I did not work on, so if I am making a mistake I apologize. Also, I did not see this in Issues, but...

When using the createElement implementation, I noticed that for some reason the `tbody` and `td` elements were not working. When I set the `th` element to use the same component...