Cretezy / flutter_linkify

Turns text URLs and emails into clickable inline links in text for Flutter
https://pub.dartlang.org/packages/flutter_linkify
MIT License
262 stars 99 forks source link

When I linkify the text like "{url: https:abc.com}" or "{url: https:abc.com, msg:abc}", the "," and "}" are identified into linkified text. #105

Closed Onekki closed 1 year ago

Onekki commented 2 years ago

When I linkify the text like "{url: https:abc.com}" or "{url: https:abc.com, msg:abc}", the "," and "}" are identified into linkified text.

sebastianbuechler commented 2 years ago

https:abc.com is not a valid url. If I changed it to {url: https://abc.com, msg:abc} it correctly identifies https:abc.com as link. What did you expect? image