You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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>`__
Thanks and regards,
Jan Janský
The text was updated successfully, but these errors were encountered:
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ý
The text was updated successfully, but these errors were encountered: