From 3a13041a5a545fa5f832b7bb60aecc783afcb26f Mon Sep 17 00:00:00 2001 From: garry-ut99 <72945564+garry-ut99@users.noreply.github.com> Date: Sat, 6 Jul 2024 13:28:20 +0000 Subject: [PATCH] Minor formatting (previous commit) --- Static-filter-syntax.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Static-filter-syntax.md b/Static-filter-syntax.md index 18ecfe0..554c9bb 100644 --- a/Static-filter-syntax.md +++ b/Static-filter-syntax.md @@ -8,8 +8,7 @@ Starting with [1.46.1b15](https://github.com/gorhill/uBlock/commit/81498474d6d44 - `/^example\.org$/##h1` - matches only `example.org` without subdomains - `/^www\.example\.org$/##h1` - matches only `www.example.org` without subdomains and without `example.org` - `/^(?:www\.)?example\.org$/##h1` - matches only `example.org` + `www.example.org` without subdomains - -- `/^example\.org$/,somesite.org##h1` - can also be combined with normal names + - `/^example\.org$/,somesite.org##h1` - can also be combined with normal names Use sparingly, when no other solution is practical from a maintenance point of view -- keeping in mind that uBO has to iterate through all the regex-based values, unlike plain hostname or entity-based values which are mere lookups.