react-native-markdown-renderer icon indicating copy to clipboard operation
react-native-markdown-renderer copied to clipboard

<br>-tag not supported inside <strong> and maybe more tags?

Open emilkarl opened this issue 7 years ago • 2 comments
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.

emilkarl avatar Oct 01 '18 06:10 emilkarl

In a code block?

bensinjin avatar Oct 03 '18 23:10 bensinjin

@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.

emilkarl avatar Oct 04 '18 06:10 emilkarl