Marcin Borkowski <[email protected]> wrote: [...] > What I'd like to have is a function that would just extract the link > portion (which is normally invisible) and displayed it in the echo > area (something like hovering over a link in a web browser).
There may be a better way, but I think below does what you want.
#+begin_src elisp
(defun org-display-link ()
(interactive)
(message "%s" (org-element-property :raw-link (org-element-context))))
#+end_src
--
Kyle
