I'm using Sphinx to document a project for work. I want to use the same link that points to a download on multiple pages throughout my documentation.
For example: home.rst:
Hi
==
I want you to download_ my project.
.. _download: blah.com/download
other_page.rst
Hello Again
===========
You can also download_ it here.
.. _download: blah.com/download
Is there some way to have one variable that each page points to so when the link needs updated only on variable needs to be updated?