···5353For all other services, you can take advantage of a regex to blacklist posts:
5454- `^\[live\]` will not post anything starting with `[live]`.
5555- `insult|badword` will not post anything that includes either `insult` or `badword`.
5656+- `^(?!support$).+$` will only post that are `support`. (useful for reddit flairs)
5657<br />
5758<br />
58595960You can use [regexr.com](https://regexr.com/) or [ChatGPT](https://chatgpt.com/) to create (JavaScript-like) regexs.
6061You can use regex keywords to negate the condition, in order to create a whitelist filter.
6161-The flags used for string matching are `gi`, only the title is checked.
6262+The flags used for string matching are `gi`, only the titles and reddit flairs are checked.
62636364### 🥳 Test notification
6465Test notifications let you see how your message will look like when a video is uploaded or a streamer goes live, etc.
···290291 <td>Post id</td>
291292 </tr>
292293 <tr>
294294+ <td><code>post.title</code></td>
295295+ <td>Some funny title</td>
296296+ <td>Post title</td>
297297+ </tr>
298298+ <tr>
293299 <td><code>post.text</code></td>
294300 <td>A very, very long text</td>
295301 <td>Post body</td>
296302 </tr>
297303 <tr>
298298- <td><code>post.thumbnail</code>*</td>
304304+ <td><code>post.thumbnail</code></td>
299305 <td>https://.../..</td>
300306 <td>Post thumbnail</td>
307307+ </tr>
308308+ <tr>
309309+ <td><code>post.flair</code></td>
310310+ <td>Support</td>
311311+ <td>Post flair</td>
301312 </tr>
302313 <tr>
303314 <td><code>post.posted.ago</code></td>
···341352 </tr>
342353 </tbody>
343354</table>
344344-<br />
345345-346346-*`post.thumbnail` is in testing and might change, note that it's content is optional and might be empty.
347347-348348-<br />
349355<br />
350356351357<table>