How can I create two separated external links in the same paragraph, i.e. something like:
for pytorch click `here <http://www.pytorch.org>`_ and for tensorflow click
`here <http://www.tensorflow.org>`_
that show as the following
BUT with separated or non-inline links! This would allow me to gather all my external links at one place and invoke them using any caption I like.
Now, If I use anonymous links as in the following code:
.. __: pytorch_
for example.com click here__
.. __: tensorflow_
and for tensorflow.com click here__
.. _pytorch: http://www.pytorch.org
.. _tensorflow: http://www.tensorflow.org
This is what I get (Note separate paragraphs)
for pytorch click here
and for tensorflow click here
In other words, if we take this example ... can I use the same caption (e.g. here
) to link to two different explicit and non-inline external links in the same paragraph?