summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Maus <dmaus@ictsoc.de>2011-03-20 12:14:36 +0100
committerDavid Maus <dmaus@ictsoc.de>2011-03-20 12:14:36 +0100
commit1fb33b595daf4ae1fe5701beb6d5b54f8309f2f8 (patch)
tree5942bcbc811732bfbfe6d3928dcac17e1913a43d
parent3d802ee691664ee93c1680e323a3486d972db578 (diff)
downloadorg-mode-1fb33b595daf4ae1fe5701beb6d5b54f8309f2f8.tar.gz
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.
-rw-r--r--lisp/org-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-html.el b/lisp/org-html.el
index eea425f..d678195 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 "@<img src=\"" desc "\"/>")
+ (concat "<img src=\"" desc "\"/>")
'(org-protected t))))
(cond
((equal type "internal")