From 79d3c289dab4c8d76da10f3ee33f21ecec1e7e08 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 28 Sep 2012 17:08:37 +0200 Subject: [PATCH] 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'. --- contrib/lisp/org-e-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-e-html.el b/contrib/lisp/org-e-html.el index c3d1bf263..f0ba5f981 100644 --- a/contrib/lisp/org-e-html.el +++ b/contrib/lisp/org-e-html.el @@ -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))))) -- 2.11.4.GIT