Hi, Here's a couple of minor changes for ox-html.
First, I dropped the references to HTML5 hgroup since apparently W3 did the same¹. Second, for some reason ox-html replaces a couple of entities by itself—rather than letting org-entities do it—but uses hex references (or whatever), rather than a "nice" HTML character entity. The second patch fixes this. (I naively assume that there is not a reason for not using the pretty references). —Rasmus Footnotes: ¹ e.g. http://html5doctor.com/the-hgroup-element/ -- May the Force be with you
>From 8325901e959e16d34546ca7bf74d7efbc8e16825 Mon Sep 17 00:00:00 2001 From: Rasmus <w...@pank.eu> Date: Sun, 16 Mar 2014 00:36:21 +0100 Subject: [PATCH 1/2] Remove reference to hgroup in ox-html * ox-html.el (org-html-html5-elements): Drop reference to hgroup. --- lisp/ox-html.el | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index a8c924f..cb95161 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -169,10 +169,8 @@ "progress" "section" "video") "New elements in html5. -<hgroup> is not included because it's currently impossible to -wrap special blocks around multiple headlines. For other blocks -that should contain headlines, use the HTML_CONTAINER property on -the headline itself.") +For blocks that should contain headlines, use the HTML_CONTAINER +property on the headline itself.") (defconst org-html-special-string-regexps '(("\\\\-" . "­") ; shy -- 1.9.0
>From bd096d2040d4ffaa517466ac85c4e0da08863bec Mon Sep 17 00:00:00 2001 From: Rasmus <w...@pank.eu> Date: Sun, 16 Mar 2014 00:54:11 +0100 Subject: [PATCH 2/2] Proper HTML entities for dashes, dots in ox-html * ox-html.el (org-html-special-string-regexps): Use HTML entities. --- lisp/ox-html.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index cb95161..8e22df6 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -173,10 +173,10 @@ For blocks that should contain headlines, use the HTML_CONTAINER property on the headline itself.") (defconst org-html-special-string-regexps - '(("\\\\-" . "­") ; shy - ("---\\([^-]\\)" . "—\\1") ; mdash - ("--\\([^-]\\)" . "–\\1") ; ndash - ("\\.\\.\\." . "…")) ; hellip + '(("\\\\-" . "­") ; shy + ("---\\([^-]\\)" . "—\\1") ; mdash + ("--\\([^-]\\)" . "–\\1") ; ndash + ("\\.\\.\\." . "…")) ; hellip "Regular expressions for special string conversion.") (defconst org-html-scripts -- 1.9.0