Comment on page
Regular
Regular filters "OR" filters, and are case insensitive. This meaning that if any of the words defined in the filters are found in the feed in their respective categories, then it will pass the filter and be sent to Discord.
If regex filters are defined, regular filters will be ignored
Feed
{
"filters": {
"title": ["filter1", "filter2"],
"description": ["word1"]
}
}
Add modifiers in front of words to change their behavior.
~
- Broad modifier where if the word is found anywhere in the property it will pass (including inside words). Use \~
to escape the tilde.!
- NOT modifier to negate what it normally does, and is essentially a blacklist. This will take priority over everything. Like the broad search, you may escape it by \!
to interpret it as a normal exclamation mark.!~
- The negation of the broad modifier.Example filter words and their respective example contents to be searched for the filters are found below. BLOCKED means the article won't be sent with that content for that filter.
"Testing here" - BLOCKED
"Protest" - BLOCKED
"Test Me" - PASSED
"Testing here" - PASSED
"Protest" - PASSED
"Test Me" - PASSED
"Testing here" - PASSED
"Protest" - PASSED
"Test Me" - BLOCKED
"Testing here" - BLOCKED
"Protest" - BLOCKED
"Test Me" - BLOCKED
"Testing here" - BLOCKED
"Protest Another" - PASSED
"Test Me" - PASSED
"Her Message" - PASSED
"Her Test" - BLOCKED
"Test Her" - BLOCKED
"Test Me" - BLOCKED
Last modified 3yr ago