Quellcode durchsuchen

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 vor 12 Jahren
Ursprung
Commit
3725c417ea
1 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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)