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 7b74ef1c13.
This commit is contained in:
David Maus 2011-03-20 12:14:36 +01:00
parent 3d802ee691
commit 1fb33b595d
1 changed files with 1 additions and 1 deletions

View File

@ -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")