Updated Advanced Content Filter addon (markdown)

Hypolite Petovan 2018-10-11 10:52:09 -04:00
parent 8c600b334d
commit 705ea5c9fd

@ -23,6 +23,6 @@ I want to filter all those news pages and luckily a lot of them contain the word
## 4. Collapse all posts _not_ from a specific account
`author_link != 'https://friendica.example.tld/profile/username && body matches "/blubb/"`
`author_link != 'https://friendica.example.tld/profile/username' && body matches "/blubb/"`
This rule matches items that have the word `blubb` in their body and which were not published by the profile `https://friendica.example.tld/profile/username`. Remember that equality operators `==` and `!=` match the exact string against the provided item property, while `matches` that can match a portion of the item property.