From 9408da406f4ce5e70727d25ee6b9ebc450c21d7c Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Sun, 25 Aug 2024 20:42:21 +0100 Subject: [PATCH] [DOCS] Add documentation for matching empty/nil event Description and Location --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 699beef..83e744c 100644 --- a/README.md +++ b/README.md @@ -113,11 +113,11 @@ calendars: match: summary: prefix: "Canceled: " - - description: "Remove optional events" + - description: "Remove events without descriptions" remove: true match: - summary: - prefix: "[Optional]" + description: + empty: true - description: "Remove public holidays" remove: true match: @@ -168,6 +168,7 @@ Each filter can specify match conditions against the following event properties: These match conditions are available for a string value: +* `empty` - if `true`, property must be absent or empty * `contains` - property must contain this value * `prefix` - property must start with this value * `suffix` - property must end with this value