0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-08-26 03:02:53 +00:00

Use <hr/> instead of <hr> to keep w3c validator happy.

* org-html.el (org-export-html-html-helper-timestamp): use
<hr/> instead of <hr> to keep w3c validator happy.
This commit is contained in:
Bastien Guerry 2011-01-31 19:38:38 +01:00
parent 6575b252dc
commit 13c894d0bb

View file

@ -477,7 +477,6 @@ When nil, also column one will use data tags."
(const :tag "XHTML 1.0" "<p class=\"xhtml-validation\"><a href=\"http://validator.w3.org/check?uri=referer\">Validate XHTML 1.0</a></p>")
(string :tag "Specify full HTML")))
(defcustom org-export-html-with-timestamp nil
"If non-nil, write timestamp into the exported HTML text.
If non-nil Write `org-export-html-html-helper-timestamp' into the
@ -487,7 +486,7 @@ a file."
:type 'boolean)
(defcustom org-export-html-html-helper-timestamp
"<br/><br/><hr><p><!-- hhmts start --> <!-- hhmts end --></p>\n"
"<br/><br/><hr/><p><!-- hhmts start --> <!-- hhmts end --></p>\n"
"The HTML tag used as timestamp delimiter for HTML-helper-mode."
:group 'org-export-html
:type 'string)