From: Philippe Proulx Date: Fri, 4 Sep 2015 22:14:50 +0000 (-0400) Subject: checkdocs.py: check "int" class before warning X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=5415e7ec24055981e6c0b1d5427fdc48a24b99f0;p=lttng-docs.git checkdocs.py: check "int" class before warning Signed-off-by: Philippe Proulx --- diff --git a/tools/checkdocs.py b/tools/checkdocs.py index 05f5279..9f56a3f 100755 --- a/tools/checkdocs.py +++ b/tools/checkdocs.py @@ -108,8 +108,8 @@ def _check_file_links(toc_ids, path, c): _pwarn(path, 'External link has no "ext" class: "{}"'.format(link)) if href is not None: - if href.group(1).startswith('#'): - _pwarn(path, 'External link starts with #: "{}"'.format(href)) + if href.group(1).startswith('#') and 'int' not in classes: + _pwarn(path, 'External link starts with #: "{}"'.format(href.group(1))) else: _perror(path, 'External link with no "href": "{}"'.format(link)) ret = False