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

React Native 100% compatible CommonMark renderer

Results 98 react-native-markdown-renderer issues
Sort by recently updated
recently updated
newest added
trafficstars

Is it possible to style Text inside the blockquote?

verion 3.2.8,all heading shown in plain text,maybe something broken in applyStyle.js RN: 0.57 ``` export default function applyStyle(children, styles, type) { if (!(styles instanceof Array)) { styles = [styles]; }...

Markdown sample like this: ↓↓↓↓ ``` # It's sample code and here is inline html ``` --- And how can I render that code in react native? ↓↓↓↓ # It's...

Not sure if this is meant to be supported or not. But would appreciate some pointers on where to start debugging. I am using the package with RN (0.58) and...

Rather than switch the user to Safari/Chrome when opening links (and exiting the app), this PR adds support for SafariViewController and Chrome tabs in-app. This results in a smooth user...

Minor setback, but looks like v3.2.8 is not from latest master branch. Particularly, it's missing the period after ordered list icon - it was fixed [here](#58)

I'm using this package to render markdown text that was converted from existing html. I have an image that is wrapped inside `` tags, like so: ```html test image ```...

The following markdown renders incorrectly: `"__*new test* __"` The space between * and __ appears to be the culprit.

Links are automatically styled correctly and are clickable on Android, but on IOS the onPress is not triggered at all. If we change the onPress of the link in renderRules.js...

Not sure if it is just me but applyStyle.js check for display name `child.type.displayName === type` is broken, because displayName is undefined always. Possible check would be -> `child.type.displayName ===...