|
@@ -2720,9 +2720,12 @@ INFO is a plist holding contextual information. See
|
|
|
(desc (org-string-nw-p desc))
|
|
|
(path
|
|
|
(cond
|
|
|
- ((member type '("http" "https" "ftp" "mailto"))
|
|
|
+ ((member type '("http" "https" "ftp"))
|
|
|
(org-link-escape-browser
|
|
|
(org-link-unescape (concat type "://" raw-path))))
|
|
|
+ ((string= type "mailto")
|
|
|
+ (org-link-escape-browser
|
|
|
+ (org-link-unescape (concat type ":" raw-path))))
|
|
|
((string= type "file")
|
|
|
;; Treat links to ".org" files as ".html", if needed.
|
|
|
(setq raw-path
|