attach: translate directly as file links during export

* lisp/org-attach.el (org-attach-expand-links): translate directly as
file links during export.
This commit is contained in:
Gustav Wikström 2020-02-28 01:27:47 +01:00 committed by Nicolas Goaziou
parent 5d4314ce9e
commit 0e0df5abf3
1 changed files with 1 additions and 2 deletions

View File

@ -663,7 +663,7 @@ It is meant to be added to `org-export-before-parsing-hook'."
(org-element-property :contents-end link))))
(file (org-element-property :path link))
(new-link (org-link-make-string
(concat "attachment:" (org-attach-expand file))
(concat "file:" (org-attach-expand file))
description)))
(goto-char (org-element-property :end link))
(skip-chars-backward " \t")
@ -677,7 +677,6 @@ See `org-open-file' for details about ARG."
(org-link-set-parameters "attachment"
:follow #'org-attach-follow
:export #'org-export-link-as-file
:complete #'org-attach-complete-link)
(defun org-attach-complete-link ()