summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2011-01-31 19:38:38 +0100
committerBastien Guerry <bzg@altern.org>2011-01-31 19:38:38 +0100
commit13c894d0bb208906ec2aebb2e583283b517c5174 (patch)
tree810a7864b96d34e62aeafe748b1fe61827febd8d
parent6575b252dc22e6187e520c2d853216ead318e999 (diff)
downloadorg-mode-13c894d0bb208906ec2aebb2e583283b517c5174.tar.gz
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.
-rw-r--r--lisp/org-html.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/org-html.el b/lisp/org-html.el
index 93c200b..6c0e5e3 100644
--- a/lisp/org-html.el
+++ b/lisp/org-html.el
@@ -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)