From 1fb33b595daf4ae1fe5701beb6d5b54f8309f2f8 Mon Sep 17 00:00:00 2001 From: David Maus Date: Sun, 20 Mar 2011 12:14:36 +0100 Subject: [PATCH] Don't protect img tag in link description * org-html.el (org-html-handle-links): Don't protect img tag in link description. Follow up of 7b74ef1c135505b56537d6bdc18ad9e1a713154b. --- lisp/org-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index eea425fe0..d67819542 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -886,7 +886,7 @@ OPT-PLIST is the export options list." (if (string-match "^file:" desc) (setq desc (substring desc (match-end 0))))) (setq desc (org-add-props - (concat "@") + (concat "") '(org-protected t)))) (cond ((equal type "internal") -- 2.11.4.GIT