Function: org-org-link

org-org-link is a byte-compiled function defined in ox-org.el.gz.

Signature

(org-org-link LINK CONTENTS INFO)

Documentation

Transcode LINK object back into Org syntax.

CONTENTS is the description of the link, as a string, or nil. INFO is a plist containing current export state.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-org.el.gz
(defun org-org-link (link contents info)
  "Transcode LINK object back into Org syntax.
CONTENTS is the description of the link, as a string, or nil.
INFO is a plist containing current export state."
  (or (org-export-custom-protocol-maybe link contents 'org info)
      (org-element-link-interpreter link contents)))