markdown-to-jsx
markdown-to-jsx copied to clipboard
Is there an equivalent package for react-native for markdown-to-jsx
Hello All, I am using this awesome package for my react web uses. Was wondering is there an equivalent package for react-native ??
i am looking for the following support -
- supports markdown (e.g. -
**Header**) - supports custom tags (e.g. -
<MyTag color="blue">Example</MyTag>) - supports mix of markdown & Custom tags (e.g. -
<MyTag>*Mixed Example*</MyTag>)
Thanks Again!!
Cheers!!
Can you override the presentation of every HTML element? https://github.com/probablyup/markdown-to-jsx#optionsoverrides---override-any-html-tags-representation
Seems like you could represent them as react native
Hmm, what if you just plugged in the RN components in overrides for all the common HTML tags?
Hmm, what if you just plugged in the RN components in overrides for all the common HTML tags?
I've done just this and it works exactly as expected.