react-native-markdown-display
react-native-markdown-display copied to clipboard
Custom rule does not work
Hi,
This custom role does not work:
const rules = {
u: (node, children, parent, styles) => (
<Text key={node.key} style={[styles.text, { textDecorationLine: "underline" }]}>
{children}
</Text>
),
};
I guess because it is HTML, but markdown does not support underlined text, so I tried to add my own but does not works, is it possible to support HTML too?