react-native-autolink
react-native-autolink copied to clipboard
Automatic linking of URLs, phone numbers, emails, handles, and even custom patterns in text for React Native
Hi, For our app we would like to separately process certain url patterns, while allowing all other urls to be handled normally. I tried to implement this using both url=true...
if text is `aaa:google.com` and `url={true}` then entire text is linkified ... it really should be aaa: as string and google.com as link (tldMatches picks up .com correctly but fails...
I'm trying to use autolink to render linkable text and allow clicking on URLs. Out of the box it works well, but when I set selectable={true}, I lose the clickability...
Tweaks to documentation based on responses to #56
Hi, I want to use **truncate** only in urls. When I use **truncate**, **Custom Matchers** are also affected. How can I disable **truncate** in **Custom Matchers**? For example like this;...
Hey, I did something like this to support string patterns: ```tsx import React from 'react'; import Autolink, {AutolinkProps, CustomMatcher} from 'react-native-autolink'; const escapeRegExp = (value: string) => { return value.replace(/[-\/\\^$*+?.()|[\]{}]/g,...
Hello, thank you for sharing this package! I am trying to match several patterns of strings within a body of text, namely: 1. Hash tags (e.g.: `#programming`), 2. User names...