|
@@ -1252,10 +1252,8 @@ INFO is a plist holding contextual information. See
|
|
|
link org-groff-inline-image-rules))
|
|
|
(path (cond
|
|
|
((member type '("http" "https" "ftp" "mailto"))
|
|
|
- (concat type ":" raw-path))
|
|
|
+ (concat type "://" raw-path))
|
|
|
((string= type "file")
|
|
|
- (when (string-match "\\(.+\\)::.+" raw-path)
|
|
|
- (setq raw-path (match-string 1 raw-path)))
|
|
|
(if (file-name-absolute-p raw-path)
|
|
|
(concat "file://" (expand-file-name raw-path))
|
|
|
(concat "file://" raw-path)))
|