* lisp/ox-md.el (org-md-link): Fix b8b34ea.
This commit is contained in:
Nicolas Goaziou 2014-08-22 14:52:21 +02:00
parent b8b34eadb4
commit 1a89ec59fa
1 changed files with 4 additions and 1 deletions

View File

@ -335,7 +335,10 @@ a communication channel."
;; Link type is handled by a special function.
((let ((protocol (nth 2 (assoc type org-link-protocols))))
(and (functionp protocol)
(funcall protocol (org-link-unescape path) desc 'md))))
(funcall protocol
(org-link-unescape (org-element-property :path link))
contents
'md))))
(t (let* ((raw-path (org-element-property :path link))
(path
(cond