From f0a0d0bc22f2038c65837308f33698d3b787d3da Mon Sep 17 00:00:00 2001 From: Julia Medina Date: Wed, 9 Apr 2014 18:46:21 -0300 Subject: [PATCH] Ignore known broken links in docs linkcheck --- docs/conf.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 78a44d8a3..7acf7c7fa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -192,3 +192,14 @@ latex_documents = [ # If false, no module index is generated. #latex_use_modindex = True + + +# Options for the linkcheck builder +# --------------------------------- + +# A list of regular expressions that match URIs that should not be checked when +# doing a linkcheck build. +linkcheck_ignore = [ + 'http://localhost:\d+', 'http://hg.scrapy.org', + 'http://directory.google.com/' +]