From c584dcb3d3ed9dbbc93481d904cc6e5717af6f2a Mon Sep 17 00:00:00 2001 From: martinrotter Date: Mon, 30 May 2022 07:33:17 +0200 Subject: [PATCH] Update Documentation.md --- resources/docs/Documentation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/docs/Documentation.md b/resources/docs/Documentation.md index fe8f33ded..0021c0f94 100644 --- a/resources/docs/Documentation.md +++ b/resources/docs/Documentation.md @@ -84,12 +84,12 @@ With ISA, RSS Guard only downloads articles which are new or were updated. While 4 [OAuth](https://en.wikipedia.org/wiki/OAuth) is secure way of authenticating users in online applications. ### Article Filtering -Sometimes you need to tweak incoming article - mark it starred, remove ads from its contents or simply ignore it. That's where filtering feature comes in. +Sometimes you need to automatically tweak incoming article - mark it starred, remove ads from its contents or simply ignore it. That's where filtering feature comes in. alt-img #### Writing article filter -Article filters are small `JavaScript` pieces of code which must provide function with prototype: +Article filters are small scripts which are executed automatically when articles/feeds are downloaded. Article filters are `JavaScript` pieces of code which must provide function with prototype: ```js function filterMessage() { }