The text `...and` is parsed as an URL while the text `..and` is not. Test to reproduce it: ```dart expectListEqual( linkify("...and", options: LinkifyOptions(looseUrl: true)), [TextElement('...and')], ); ``` Output: `Expected [LinkElement: 'http://...and' (...and)] to be [TextElement: '...and']` This test runs ok: ```dart expectListEqual( linkify("..and", options: LinkifyOptions(looseUrl: true)), [TextElement('..and')], ); ```