]> git.mxchange.org Git - friendica-addons.git/blobdiff - advancedcontentfilter/doc/advancedcontentfilter.md
added some examples
[friendica-addons.git] / advancedcontentfilter / doc / advancedcontentfilter.md
index 41320fa3af0ed9c022fe796c0bac42b29daf48fe..edd5421744e4746b9ffb92ca3aa3655216f3de32 100644 (file)
@@ -34,6 +34,14 @@ If the expression using a post variables returns `true`, the post will be collap
 
 A post will be collapsed if at least one rule matches, but all matching rule names will be displayed above the collapsed content.
 
+## Examples
+
+1. To block specific domains  `body matches "/\\.exmaple\\.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}/"`
+
+
 ## Expression Syntax
 
 ### Supported Literals
@@ -506,4 +514,4 @@ You can also retrieve the variables of a specific post by pasting its URL below
                </td>
        </tr>
 </tbody>
-</table>
\ No newline at end of file
+</table>