diff options
| author | Andrey Konovalov <andreyknvl@google.com> | 2019-03-01 11:56:03 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2019-03-01 13:19:42 +0100 |
| commit | 68d9e495c336fce0d2398745d81821f5c702d221 (patch) | |
| tree | 3e5d40e291860ef610c51e6635f66cead1c0a7d5 /tools | |
| parent | b32a35fd830d50614a0cd56b8c3b91a393c5b734 (diff) | |
check_links: ignore mailto:* links
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/check_links.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/check_links.py b/tools/check_links.py index 14a8517c1..269e323ab 100755 --- a/tools/check_links.py +++ b/tools/check_links.py @@ -27,6 +27,8 @@ def filter_link((doc, link)): return False if link.startswith('#'): return False + if link.startswith('mailto'): + return False return True links = filter(filter_link, links) |
