From 0e0df5abf39d80d3ac59da5120a20e03d0692bdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20Wikstr=C3=B6m?= Date: Fri, 28 Feb 2020 01:27:47 +0100 Subject: [PATCH] attach: translate directly as file links during export * lisp/org-attach.el (org-attach-expand-links): translate directly as file links during export. --- lisp/org-attach.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lisp/org-attach.el b/lisp/org-attach.el index 97a7236e4..443485ab4 100644 --- a/lisp/org-attach.el +++ b/lisp/org-attach.el @@ -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 ()