From c1ba122a57e1f4bdef2cd342cdf30c08c9f536a9 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Fri, 1 Jun 2012 18:25:15 +0200 Subject: [PATCH] org-e-html: Remove spurious newline character before paragraphs * contrib/lisp/org-e-html.el (org-e-html-paragraph): Remove spurious newline character before paragraphs. --- 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 de9849348..fdf28ee06 100644 --- a/contrib/lisp/org-e-html.el +++ b/contrib/lisp/org-e-html.el @@ -2617,7 +2617,7 @@ the plist used as a communication channel." ((org-e-html-standalone-image-p paragraph info) ;; standalone image contents) - (t (format "\n\n%s\n

" extra contents))))) + (t (format "\n%s\n

" extra contents))))) ;;;; Plain List