Regular
Last updated
Was this helpful?
Last updated
Was this helpful?
This documentation site is deprecated. Please visit the control panel at for all up-to-date functionality
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
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.
test
"Testing here" - BLOCKED
"Protest" - BLOCKED
"Test Me" - PASSED
~test
"Testing here" - PASSED
"Protest" - PASSED
"Test Me" - PASSED
!test
"Testing here" - PASSED
"Protest" - PASSED
"Test Me" - BLOCKED
!~test
"Testing here" - BLOCKED
"Protest" - BLOCKED
"Test Me" - BLOCKED
test
, another
"Testing here" - BLOCKED
"Protest Another" - PASSED
"Test Me" - PASSED
!test
, ~her
"Her Message" - PASSED
"Her Test" - BLOCKED
"Test Her" - BLOCKED
"Test Me" - BLOCKED