Sometimes I will have to deal with a long link, like this:
https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
I prefer to wrap long links if possible. This is allowed with reStructuredText:
lastIndexOf_
.. _lastIndexOf: https://developer.mozilla.org/docs/Web/JavaScript/
Reference/Global_Objects/String/lastIndexOf
and also with AsciiDoc via link syntax:
link:++https://developer.mozilla.org/docs/Web/JavaScript/Reference/
Global_Objects/String/lastIndexOf++[lastIndexOf]
or variable syntax:
:js: https://developer.mozilla.org/docs/Web/JavaScript/Reference
{js}/Global_Objects/String/lastIndexOf
Does Org Mode have some way to deal with this?