diff --git a/lychee-lib/src/filter/mod.rs b/lychee-lib/src/filter/mod.rs index 0b0423527d..e30395b15e 100644 --- a/lychee-lib/src/filter/mod.rs +++ b/lychee-lib/src/filter/mod.rs @@ -41,14 +41,15 @@ static UNSUPPORTED_DOMAINS: LazyLock> = LazyLock::new(|| { /// Pre-defined exclusions for known false-positives const FALSE_POSITIVE_PAT: &[&str] = &[ - r"^https?://schemas.openxmlformats.org", - r"^https?://schemas.zune.net", - r"^https?://www.w3.org/1999/xhtml", - r"^https?://www.w3.org/1999/xlink", - r"^https?://www.w3.org/2000/svg", - r"^https?://ogp.me/ns#", - r"^https?://schemas.microsoft.com", - r"^https?://(.*)/xmlrpc.php$", + r"^https?://schemas\.openxmlformats\.org", + r"^https?://schemas\.microsoft\.com", + r"^https?://schemas\.zune\.net", + r"^https?://www\.w3\.org/1999/xhtml", + r"^https?://www\.w3\.org/1999/xlink", + r"^https?://www\.w3\.org/2000/svg", + r"^https?://www\.w3\.org/2001/XMLSchema-instance", + r"^https?://ogp\.me/ns#", + r"^https?://(.*)/xmlrpc\.php$", ]; static FALSE_POSITIVE_SET: LazyLock =