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:
parent
3d802ee691
commit
1fb33b595d
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue