浏览代码

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".
Bastien Guerry 12 年之前
父节点
当前提交
3725c417ea
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      lisp/ox-html.el

+ 2 - 1
lisp/ox-html.el

@@ -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)