Thomas Perl
                                            Thomas Perl
                                        
                                    It cannot be customized at the moment without changing the code. However, you could use [Pass diff output to a different script](https://urlwatch.readthedocs.io/en/latest/advanced.html#pass-diff-output-to-a-custom-script) and then have the script format and send...
Not directly, but you can probably use a [shell job](https://urlwatch.readthedocs.io/en/latest/jobs.html#shell) using e.g. `curl` to work around it for now: ``` name: "my job" command: curl http://google.com/?q=$SOMETHING filter: - ... ```...
Yes, if the pages applies a Captcha to avoid automated tools to grab the page contents, there's not much we can do. Have you checked if Walmart or Home Depot...
Have you tried using https://urlwatch.readthedocs.io/en/latest/jobs.html#browser (just change `url` to `navigate`) which uses a headless variant of the Chrome browser to load the page? Maybe this is "good enough" to make...
Try a different `html2text` method, it seems like lynx might have problem displaying some characters (the website encoding seems to be UTF-8, so that seems fine): quoted from [`lib/urlwatch/html2txt.py`](https://github.com/thp/urlwatch/blob/master/lib/urlwatch/html2txt.py): ```...
Patches to improve this gladly accepted. Alternatively, maybe just a documentation of the filters in "Advanced" section could help? Alternatively, there's also https://github.com/thp/urlwatch/pull/572 which improves reporting with Markdown for Matrix,...
urlwatch doesn't directly support OAuth at the moment for E-Mail sending with GMail (or any other provider). Have you checked if any of the other reporters could do the trick...
@georgjaehnig Did you have time to look at the PR review comment?
PRs gladly accepted.
Is there any documentation on how Discord's hooks are rate-limited? Maybe you need to create a different webhook for different things?