How can I block (block rule) feed articles with specific tags? #2291
-
In each feed article before the content there is always a value "Tags" with some values depending on the article. How can I exclude/block articles with specific tags? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@x0tester0x (mentioning just in case you're no longer subscribed to this discussion). You'll need at least 2.1.0 since filtering rules also applying to tags and authors was added in 2.1.0:
Relevant PRs:
You just need to add blocking rules like before and they will now also apply to tags/authors. I've just tried it and it works fine, assuming your blocking rules are also working, of course. Docs - filtering rules mentions RE2 syntax documentation but it's quite difficult to get into in my opinion. I used this website to test my regex rules to see whether they match certain strings or not, that was very useful. I ended up writing simple rules such as:
Hope that helps! |
Beta Was this translation helpful? Give feedback.
@x0tester0x (mentioning just in case you're no longer subscribed to this discussion).
You'll need at least 2.1.0 since filtering rules also applying to tags and authors was added in 2.1.0:
Relevant PRs:
You just need to add blocking rules like before and they will now also apply to tags/authors.
I've just tried it and it works fine, assuming your blocking rules are also working, of course.
Docs - filtering rules mentions RE2 syntax documentation but it's quite difficult to get into in my opinion.
I used this website to test my regex rules to see whether they match certain strings or not, that w…