org-e-html: Use <a>...</a> instead of <a/>

This commit is contained in:
Jambunathan K 2012-06-02 15:37:10 +05:30
parent 02f3ee40f3
commit 2d71a58ef3
1 changed files with 2 additions and 2 deletions

View File

@ -2186,7 +2186,7 @@ holding contextual information."
(let ((id (org-solidify-link-text (let ((id (org-solidify-link-text
(if (org-uuidgen-p x) (concat "ID-" x) (if (org-uuidgen-p x) (concat "ID-" x)
x)))) x))))
(format "<a id=\"%s\" name=\"%s\"/>" id id))) (format "<a id=\"%s\" name=\"%s\"></a>" id id)))
extra-ids "") extra-ids "")
full-text full-text
level1) level1)
@ -3065,7 +3065,7 @@ CONTENTS is nil. INFO is a plist holding contextual
information." information."
(let ((id (org-export-solidify-link-text (let ((id (org-export-solidify-link-text
(org-element-property :value target)))) (org-element-property :value target))))
(format "<a id=\"%s\" name=\"%s\"/>" id id))) (format "<a id=\"%s\" name=\"%s\"></a>" id id)))
;;;; Timestamp ;;;; Timestamp