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

Had a recent issue with builds hanging when a closing HTML tag was missed at the top of a long document. I think the regular expression matching was choking while...

This one's a bit tricky to describe, but I'll do my best. :) Let's say I want to create an inline image with some alt text like: ``` [World News][Breaking]...

@tupton ... It seems like one of the new tests for the new disableParsingRawHTML option you recently contributed, seems to be suggesting a use case that is not supported. I...

Would it be possible to support tables without the header column, like GitHub does? ```md First Cell | Second Cell | Third Cell ```

With the input text `_{over\_flow}_`, I would expect to see _{over_flow}_ but `markdown-to-jsx` renders it as _{over\\_ flow}_ I'm doing my own interpolation between the braces, to allow variable substitution...

bug

First of all thanks for you work on the library. We've recently adopted it and encountered an issue when trying to parse and render some markdown mixed with HTML (which...

I've got a bit of an odd case where the markdown being pulled in contains some HTML from legacy records. Those look something like this: ``` Each of the nine...

If my Markdown looks like this: ``` ## Title Lorem Ipsum Lorem - Ipsum Lorem * Ipsum ``` The last two items will have paragraphs passed as children, instead of...

In this bit of regex ```js const HTML_BLOCK_ELEMENT_R = /^ *(?!/]* ?\/>)/]*) ?([^>]*)\/{0}>\n?(\s*(?:]*?>[\s\S]*?|(?!]*)\/{0}` is meant to capture the attributes of an opening tag. I think that the `\/{0}` is redundant....

Hey! We have troubles with a custom component. We defined a custom component called "Small" and it contains the text: "hello > world". The following custom component `` now results...