From 2ba061c7673aedcf93d215354fcc772973197962 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 8 Oct 2024 14:43:35 +0200 Subject: [PATCH] UI - Fix incorrect placeholder text example --- changedetectionio/templates/edit.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changedetectionio/templates/edit.html b/changedetectionio/templates/edit.html index 44ec3a00..cf13bfc9 100644 --- a/changedetectionio/templates/edit.html +++ b/changedetectionio/templates/edit.html @@ -398,7 +398,9 @@ Unavailable") }}
- {{ render_field(form.extract_text, rows=5, placeholder="\d+ online") }} + {{ render_field(form.extract_text, rows=5, placeholder="/\d+ online/ + or +keyword") }}
  • Extracts text in the final output (line by line) after other filters using regular expressions or string match;