From 367c6fe312b265b792ba2b4e6cde63beb6caa845 2016-07-11 04:31:17 From: Gavin Cooper Date: 2016-07-11 04:31:17 Subject: [PATCH] Fix broken links on install/index.rst Currently the links in the section summary on the index.rst/index.html file are broken. Can be reproduced by going to http://ipython.readthedocs.io/en/stable/install/index.html and clicking on *installing IPython itself*, or *kernels for Jupyter* links. Specific changes ---------------- * Added a reference label to the `install.rst` file * Modified links from external link format to Sphinx arbitrary location cross-referencing format in the `index.rst` file Testing ------- Changes have been tested with a local sphinx build through the supplied makefile and specific links touched are fixed. Tested a few possibly overlapping links (Jupyter:install for instance) and they seem to be unaffected by the change. --- diff --git a/docs/source/install/index.rst b/docs/source/install/index.rst index 78c8536..3793fae 100644 --- a/docs/source/install/index.rst +++ b/docs/source/install/index.rst @@ -14,8 +14,8 @@ Installation -This sections will guide you through `installing IPython itself `_, and -installing `kernels for Jupyter `_ if you wish to work with +This sections will guide you through :ref:`installing IPython itself `, and +installing :ref:`kernels for Jupyter ` if you wish to work with multiple version of Python, or multiple environments. diff --git a/docs/source/install/install.rst b/docs/source/install/install.rst index 32ab774..eb6db45 100644 --- a/docs/source/install/install.rst +++ b/docs/source/install/install.rst @@ -1,3 +1,5 @@ +.. _install: + Installing IPython ==================