markdown-to-jsx
markdown-to-jsx copied to clipboard
🏭 The most lightweight, customizable React markdown component.
## Description The library currently does not sanitize the `formaction` attribute or `style` tag. This opens the possibility of a clickjacking attack. An attacker can create a button styled to...
Solves #473 With a very long input of spaces and the current `CODE_BLOCK_R` regex, the number of possible combinations becomes huge, causing the regex engine to take an extremely long...
Hi, I am testing `markdown-to-jsx` which it seems be great, but My constraint is I can't accept HTML in markdown input and I wonder if it is possible to add...
Library seems to have problem with correct interpretation of strings like this `*italics*normal*italics*`. Instead of showing *italics*normal*italics* it behaves like it is put in code block and prints string as...
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically....
Removals: - CJS variants of entrypoints (solved problem these days?) - Break apart the `MarkdownToJSX` namespace - Currently the React types are always loaded due to how the library is...
If you want any additional syntaxes like pandoc ones to be supported in the library, please request them in this thread with an example.
Hi, since #711 react is passed as an optional peer dependency, but now in another example using parcel I'm seeing that it still tries to import react if that's not...
Using weird casing in overridden elements doesn't replace them. Possibly related to https://github.com/probablyup/markdown-to-jsx/pull/247 Example: ```jsx import React from "react"; import ReactDOM from "react-dom"; import Markdown from "markdown-to-jsx"; function CustomInput() {...