From c1f07c54f216c7fbeb5be1d65b0c9337d64c6923 Mon Sep 17 00:00:00 2001 From: hoergen Date: Sat, 26 Sep 2020 13:27:57 +0200 Subject: [PATCH] Typos removed (hopefully) --- advancedcontentfilter/doc/advancedcontentfilter.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/advancedcontentfilter/doc/advancedcontentfilter.md b/advancedcontentfilter/doc/advancedcontentfilter.md index 531bb941..ba47d4e9 100644 --- a/advancedcontentfilter/doc/advancedcontentfilter.md +++ b/advancedcontentfilter/doc/advancedcontentfilter.md @@ -36,10 +36,10 @@ A post will be collapsed if at least one rule matches, but all matching rule nam ## Examples -1. To block specific domains `body matches "/\\.example\\.com/"` -2. To block everything that contains the words `body matches "/Guten Morgen/"` -3. To block every occurence of the word facebook with a space in front and after the word `body matches "//s facebook/s /"` -4. To colapse every post that contains more than 1 image `body matches "/(?:(?:(?:\\[url(?:=.*)?\\])?\\[img(?:=.*)?\\].*\\[\\/img\\]\\s*(?:\\[\\/url\\])?)\\s*){2}/"` +1. Collapse posts with specific domains `body matches "/\\.example\\.com/"` +2. Collapse posts that contains the words `body matches "/Guten Morgen/"` +3. Collapse posts with the word facebook that have a space in front and after the word `body matches "//s facebook/s /"` +4. Collapse posts that contains more than 1 image `body matches "/(?:(?:(?:\\[url(?:=.*)?\\])?\\[img(?:=.*)?\\].*\\[\\/img\\]\\s*(?:\\[\\/url\\])?)\\s*){2}/"` ## Expression Syntax