Cretezy / linkify

Low-level link (text, URLs, emails) parsing library in Dart
https://pub.dartlang.org/packages/linkify
MIT License
62 stars 50 forks source link

Support UserTagLinkifier on Safari #48

Closed jdosornio closed 1 year ago

jdosornio commented 2 years ago

The regex used on UserTagLinkifier contains a negative lookbehind, which is unsupported on Safari.

In order to being able to use the linkifier on Safari, I removed the lookbehind from the regex and refactored the code to do the same thing that the original regex.

I also fixed some user tag tests that were failing.