Fix invalid <img> tag.
This commit is contained in:
parent
952c6b9901
commit
db2485cb41
|
@ -1,5 +1,8 @@
|
||||||
2008-12-19 Carsten Dominik <carsten.dominik@gmail.com>
|
2008-12-19 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
||||||
|
* org-exp.el (org-export-html-format-image): Add the / to the end
|
||||||
|
of the <img> tag.
|
||||||
|
|
||||||
* org.el (org-ido-switchb): New function.
|
* org.el (org-ido-switchb): New function.
|
||||||
|
|
||||||
2008-12-18 Carsten Dominik <carsten.dominik@gmail.com>
|
2008-12-18 Carsten Dominik <carsten.dominik@gmail.com>
|
||||||
|
|
|
@ -3716,7 +3716,7 @@ lang=\"%s\" xml:lang=\"%s\">
|
||||||
(attr (org-find-text-property-in-string 'org-attributes src))
|
(attr (org-find-text-property-in-string 'org-attributes src))
|
||||||
(label (org-find-text-property-in-string 'org-label src)))
|
(label (org-find-text-property-in-string 'org-label src)))
|
||||||
(format "<div %sclass=\"figure\">
|
(format "<div %sclass=\"figure\">
|
||||||
<p><img src=\"%s\"%s></p>%s
|
<p><img src=\"%s\"%s /></p>%s
|
||||||
</div>"
|
</div>"
|
||||||
(if label (format "id=\"%s\" " label) "")
|
(if label (format "id=\"%s\" " label) "")
|
||||||
src
|
src
|
||||||
|
|
Loading…
Reference in New Issue