Re #133 Option for ignoring whitespacing (#345)

* Global setting option to ignore whitespace when detecting a change
This commit is contained in:
dgtlmoon
2022-01-02 22:28:34 +01:00
committed by GitHub
parent 489671dcca
commit b5c1fce136
9 changed files with 196 additions and 76 deletions

View File

@@ -258,4 +258,5 @@ class globalSettingsForm(commonSettingsForm):
[validators.NumberRange(min=1)])
extract_title_as_title = BooleanField('Extract <title> from document and use as watch title')
base_url = StringField('Base URL', validators=[validators.Optional()])
global_ignore_text = StringListField('Ignore Text', [ValidateListRegex()])
global_ignore_text = StringListField('Ignore Text', [ValidateListRegex()])
ignore_whitespace = BooleanField('Ignore whitespace')