I am currently developing my first rules, one of them should ignore spell check on URLs without http at the beginning. So I tried to create a pattern of my working regex:
URLs are ignored in SpellingCheckRule.isUrl(), so your disambiguator rule should not be needed. This is only true for “proper” URLs that start with http, https, or ftp, though.
Ah ok, but ww need a solution to exclude URLs without “http://” nothing special, just a way to simply ignore notations like subdomain.domain.tld. How can we archieve that?