Replies: 2 comments 3 replies
|
Taking a few steps back, could you expand a bit on your use case? If you do want to continue down the route of using |
|
I think there's a pretty easy workaround. I made it work using the |
|
Taking a few steps back, could you expand a bit on your use case? If you do want to continue down the route of using |
|
I think there's a pretty easy workaround. I made it work using the |
Uh oh!
There was an error while loading. Please reload this page.
Hello,
Imagine that I'm using
react-markdownlike this:This will happen:
**strong**,strongwill be rendered (becausestrongelement is disabled).---, nothing will be rendered (becausehrelement is disabled).What I need to happen:
**strong**,**strong**should be rendered.---,---should be rendered.In other words, for disallowed elements, do not drop the Markdown, and render it as plain-text instead.
Is there a setting for this, or any way to configure
react-markdownto work like this?All reactions