Variable: org-link-translation-function
org-link-translation-function is a customizable variable defined in
ol.el.gz.
Value
nil
Documentation
Function to translate links with different syntax to Org syntax.
This can be used to translate links created for example by the Planner or emacs-wiki packages to Org syntax. The function must accept two parameters, a TYPE containing the link protocol name like "rmail" or "gnus" as a string, and the linked path, which is everything after the link protocol. It should return a cons with possibly modified values of type and path.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defcustom org-link-translation-function nil
"Function to translate links with different syntax to Org syntax.
This can be used to translate links created for example by the Planner
or emacs-wiki packages to Org syntax.
The function must accept two parameters, a TYPE containing the link
protocol name like \"rmail\" or \"gnus\" as a string, and the linked path,
which is everything after the link protocol. It should return a cons
with possibly modified values of type and path."
:group 'org-link-follow
:type '(choice (const nil) (function))
:safe #'null)