Export of two or more org links with same name/label results in an invalid reST file. This is caused by ox-rst exporting references as named links instead of anonymous links.
Thus this .org notation:
[[https://example.com][this]] and [[http://example2.com][this]]
is exported as
`this <https://example.com>`_ and `this <http://example2.com>`_
creating an invalid reST file.
The solution would be to
use anonymous links only, or
use named link only in the first reference.
and thus to export the above fragment like this:
`this <https://example.com>`__ and `this <http://example2.com>`__
Export of two or more org links with same name/label results in an invalid reST file. This is caused by ox-rst exporting references as named links instead of anonymous links.
Thus this .org notation:
is exported as
creating an invalid reST file.
The solution would be to
and thus to export the above fragment like this:
Thanks and regards, Jan Janský