Variable: org-link-descriptive
org-link-descriptive is a customizable variable defined in ol.el.gz.
Value
t
Documentation
Non-nil means Org displays descriptive links.
E.g. [[https://orgmode.org][Org website]] is displayed as
"Org Website", hiding the link itself and just displaying its
description. When set to nil, Org displays the full links
literally.
You can interactively set the value of this variable by calling
org-toggle-link-display or from the "Org > Hyperlinks" menu.
Aliases
org-descriptive-links (obsolete since 9.3)
Source Code
;; Defined in /usr/src/emacs/lisp/org/ol.el.gz
(defcustom org-link-descriptive t
"Non-nil means Org displays descriptive links.
E.g. [[https://orgmode.org][Org website]] is displayed as
\"Org Website\", hiding the link itself and just displaying its
description. When set to nil, Org displays the full links
literally.
You can interactively set the value of this variable by calling
`org-toggle-link-display' or from the \"Org > Hyperlinks\" menu."
:group 'org-link
:set #'org-link--set-link-display
:type 'boolean
:safe #'booleanp)