We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4951713 + 5666395 commit 2cde97aCopy full SHA for 2cde97a
.travis.yml
@@ -0,0 +1,11 @@
1
+language: python
2
+
3
+python: 3.6
4
5
+install:
6
+ - "pip install -r requirements.txt"
7
8
+script:
9
+ - "cd ./docs/"
10
+ - "make dirhtml"
11
+ - "make linkcheck"
docs/conf.py
@@ -357,6 +357,11 @@
357
gettext_compact = False # optional.
358
359
360
+# Link check: Ignore anchors as this requires page rendering of the link
361
+# e.g. github links with anchors will fail due to being implemented in js
362
+# see https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-linkcheck_anchors
363
+linkcheck_anchors = False
364
365
366
def setup(app):
367
app.add_config_value('recommonmark_config', {
0 commit comments