From 23475b6ab95a40ad35b676637aea885fa777a3fd Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Thu, 9 Jan 2020 18:06:15 -0300 Subject: [PATCH] Fix wrong 'changelog' and 'reference' links in docs Both references were referencing links from Python because of our intersphinx mapping in `conf.py`: intersphinx_mapping = {"python": ("https://docs.python.org/3", None)} Because Python's docs explicitly define both references, Sphinx fallbacks to them instead of generating implicit references as was expected. Fix #6397 --- doc/en/changelog.rst | 2 ++ doc/en/reference.rst | 2 ++ 2 files changed, 4 insertions(+) diff --git a/doc/en/changelog.rst b/doc/en/changelog.rst index cb41e05e2..4703c7e67 100644 --- a/doc/en/changelog.rst +++ b/doc/en/changelog.rst @@ -1,3 +1,5 @@ +.. _`changelog`: + ========= Changelog ========= diff --git a/doc/en/reference.rst b/doc/en/reference.rst index a056fdf28..50e32d660 100644 --- a/doc/en/reference.rst +++ b/doc/en/reference.rst @@ -1,3 +1,5 @@ +.. _`reference`: + API Reference =============