How to include space in a hyperlink target using reStructuredText?

From the Sphinx documentation for Hyperlinks, External links.

Use Link text <http://example.com/>_ for inline web links.

You can also separate the link and the target definition (ref), like this:

This is a paragraph that contains `a link`_.

.. _a link: http://example.com/

You can do this:

.. |Target| replace:: Text With Space
.. _Target: http://google.com

For more info, see |Target|_