react-native-markdown-renderer
react-native-markdown-renderer copied to clipboard
<br>-tag not supported inside <strong> and maybe more tags?
trafficstars
trying to render this <p>X<strong>Y<br>Z</strong></p> will throw exception:
Invariant Violation: Nesting of <View> within <Text> is currently not supported.
I can see why it happens but don't know how to solve it.
In a code block?
@bensinjin . No I mean converting the code to Markdown and then render it will cause the error.
HTML:
<p>X<strong>Y<br>Z</strong></p>
Converted to markdown:
X**Y\nZ**\n\n
Renders like this on Github:
XY\nZ\n\n
Error using this lib
Invariant Violation: Nesting of <View> within <Text> is currently not supported.