org-e-html: Use <a>...</a> instead of <a/>
This commit is contained in:
parent
02f3ee40f3
commit
2d71a58ef3
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue