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)
|
(if (string-match "^file:" desc)
|
||||||
(setq desc (substring desc (match-end 0)))))
|
(setq desc (substring desc (match-end 0)))))
|
||||||
(setq desc (org-add-props
|
(setq desc (org-add-props
|
||||||
(concat "@<img src=\"" desc "\"/>")
|
(concat "<img src=\"" desc "\"/>")
|
||||||
'(org-protected t))))
|
'(org-protected t))))
|
||||||
(cond
|
(cond
|
||||||
((equal type "internal")
|
((equal type "internal")
|
||||||
|
|
Loading…
Reference in New Issue