diff --git a/docs/conf.py b/docs/conf.py index 3e9fcdbc6..6a1d10b5d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -190,6 +190,13 @@ texinfo_documents = [ ] +# -- Options for linkcheck builder ---------------------------------------- + +# A list of regular expressions that match URIs that should not be +# checked when doing a linkcheck build. +linkcheck_ignore = [r"https://java.com*"] + + # Example configuration for intersphinx: refer to the Python standard library. intersphinx_mapping = { "python": ("https://docs.python.org/3.6", None), diff --git a/docs/install_windows.rst b/docs/install_windows.rst index 85726554f..11cd883f4 100644 --- a/docs/install_windows.rst +++ b/docs/install_windows.rst @@ -8,7 +8,7 @@ Installing Red on Windows Needed Software --------------- -* `Python `_ - Red needs Python 3.6 +* `Python `_ - Red needs Python 3.6 .. note:: Please make sure that the box to add Python to PATH is CHECKED, otherwise you may run into issues when trying to run Red diff --git a/tox.ini b/tox.ini index 9bb4fe46e..f327dcbf3 100644 --- a/tox.ini +++ b/tox.ini @@ -26,7 +26,7 @@ basepython = python3.6 extras = voice, docs, mongo commands = sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" -W -bhtml - # sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" -W -blinkcheck + sphinx-build -d "{toxworkdir}/docs_doctree" docs "{toxworkdir}/docs_out" -W -blinkcheck [testenv:style] description = Stylecheck the code with black to see if anything needs changes.