From 1b4480e15fd6ee936c2edf87d955f68a1ffe6cab Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Fri, 9 Mar 2012 02:54:34 +0100 Subject: [PATCH] org-html.el (org-export-as-html): Remove useless space before tag. * org-html.el (org-export-as-html): Remove useless space before tag. Thanks to Mathias Bauer for spotting this. --- lisp/org-html.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-html.el b/lisp/org-html.el index 922b8ab85..a07a80e1a 100644 --- a/lisp/org-html.el +++ b/lisp/org-html.el @@ -1422,7 +1422,7 @@ PUB-DIR is set, use this as the publishing directory." (if (string-match (org-re "[ \t]+:\\([[:alnum:]_@:]+\\):[ \t]*$") txt) (setq txt (replace-match - "    \\1" t nil txt))) + "   \\1" t nil txt))) (if (string-match quote-re0 txt) (setq txt (replace-match "" t t txt))) (setq snumber (org-section-number level)) -- 2.11.4.GIT