From a005ce15e11ad66e384b5eed095812db04bc9420 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sun, 11 Aug 2019 18:05:04 -0400 Subject: Fix autosphinx links in uploaded release notes The :meth:`.CoverageData.foobar` syntax isn't understood by pandoc when converting to markdown. A Sphinx rst builder converts them into more basic Sphinx links first. --- doc/conf.py | 1 + 1 file changed, 1 insertion(+) (limited to 'doc/conf.py') diff --git a/doc/conf.py b/doc/conf.py index 836f77c9..4baf66ac 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -35,6 +35,7 @@ extensions = [ 'sphinx.ext.ifconfig', 'sphinxcontrib.spelling', 'sphinx.ext.intersphinx', + 'sphinx_rst_builder', ] # Add any paths that contain templates here, relative to this directory. -- cgit v1.2.1