summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-02-15 21:50:35 +0100
committerBastien Guerry <bzg@altern.org>2013-02-15 21:50:35 +0100
commit451e8be770564f93a631b80ed6f5101ea0a47222 (patch)
tree2722b79bbcfdca9e18940519dc538dbc0bba1395
parenta2fac38d56c28ebcbc71a4b606e57b8f36042078 (diff)
downloadorg-mode-451e8be770564f93a631b80ed6f5101ea0a47222.tar.gz
ox-html.el (org-html--build-meta-info): Add a newline before the title meta information
* ox-html.el (org-html--build-meta-info): Add a newline before the title meta information.
-rw-r--r--lisp/ox-html.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/ox-html.el b/lisp/ox-html.el
index 44b92f7..e1b50f4 100644
--- a/lisp/ox-html.el
+++ b/lisp/ox-html.el
@@ -1241,7 +1241,7 @@ INFO is a plist used as a communication channel."
(concat
(format "<title>%s</title>\n" title)
(format
- "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>"
+ "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>\n"
(or (and org-html-coding-system
(fboundp 'coding-system-get)
(coding-system-get org-html-coding-system 'mime-charset))