Ver código fonte

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 anos atrás
pai
commit
3725c417ea
1 arquivos alterados com 2 adições e 1 exclusões
  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)