ox-html.el (org-html--build-meta-info): Fix setting of http-equiv="Content-Type"

* ox-html.el (org-html--build-meta-info): Fix setting of
http-equiv="Content-Type".
This commit is contained in:
Bastien Guerry 2013-03-19 09:55:39 +01:00
parent 3842b073c3
commit 3725c417ea

View file

@ -1428,7 +1428,8 @@ INFO is a plist used as a communication channel."
(format
(when :time-stamp-file
(format-time-string
(concat "<!-- " org-html--timestamp-format " -->\n")))
(concat "<!-- " org-html--timestamp-format " -->\n"))))
(format
"<meta http-equiv=\"Content-Type\" content=\"text/html;charset=%s\"/>\n"
(or (and org-html-coding-system
(fboundp 'coding-system-get)