From 398415e13330dc491542a36fe1289f54533dc46c Mon Sep 17 00:00:00 2001 From: gwarser Date: Wed, 15 Dec 2021 14:55:14 +0100 Subject: [PATCH] Table in strict1p/3p examples --- Static-filter-syntax.md | 32 ++++++++++---------------------- 1 file changed, 10 insertions(+), 22 deletions(-) diff --git a/Static-filter-syntax.md b/Static-filter-syntax.md index ba09faf..9f27424 100644 --- a/Static-filter-syntax.md +++ b/Static-filter-syntax.md @@ -464,17 +464,11 @@ This new `strict1p` option is meant to check for strict partyness, i.e. a networ For example: -- context: `www.example.org` -- request: `www.example.org` -- `1p`: yes, `strict1p`: yes - -- context: `www.example.org` -- request: `subdomain.example.org` -- `1p`: yes, `strict1p`: no - -- context: `www.example.org` -- request: `www.example.com` -- `1p`: no, `strict1p`: no +| Context | Request | `1p` | `strict1p` | +| --- | --- | --- | --- | +| `www.example.org` | `www.example.org` | **yes** | **yes** | +| `www.example.org` | `subdomain.example.org` | **yes** | no | +| `www.example.org` | `www.example.com` | no | no | *** @@ -490,17 +484,11 @@ This new `strict3p` option is meant to check for strict partyness, i.e. a networ For example: -- context: `www.example.org` -- request: `www.example.org` -- `3p`: no, `strict3p`: no - -- context: `www.example.org` -- request: `subdomain.example.org` -- `3p`: no, `strict3p`: yes - -- context: `www.example.org` -- request: `www.example.com` -- `3p`: yes, `strict3p`: yes +| Context | Request | `3p` | `strict3p` | +| --- | --- | --- | --- | +| `www.example.org` | `www.example.org` | no | no | +| `www.example.org` | `subdomain.example.org` | no | **yes** | +| `www.example.org` | `www.example.com` | **yes** | **yes** | ***