org-e-html.el (org-e-html-final-function): Turn on `html-mode', not `nxml-mode'
* org-e-html.el (org-e-html-final-function): Turn on `html-mode', not `nxml-mode'.
This commit is contained in:
parent
f71db4e509
commit
79d3c289da
|
@ -2915,7 +2915,7 @@ contextual information."
|
|||
(defun org-e-html-final-function (contents backend info)
|
||||
(if (not org-e-html-pretty-output) contents
|
||||
(with-temp-buffer
|
||||
(nxml-mode)
|
||||
(html-mode)
|
||||
(insert contents)
|
||||
(indent-region (point-min) (point-max))
|
||||
(buffer-substring-no-properties (point-min) (point-max)))))
|
||||
|
|
Loading…
Reference in New Issue