jsdf/react-native-htmlview

Is there a way to ignore links ?

tahola opened this issue · 1 comments

Hello,

is there any way to completely ignore the links ?

Right now I have to do that :

"onLinkPress={(url) => {
console.log('do nothing');
}}"

And then add the parent color on my links :
const stylesHtml = StyleSheet.create({ p: { color: textColor, }, a: { color: textColor, },

Is there a better way ?

Maybe use renderNode on HTMLView to render links as a <Text> element?