From 71af82f55eff28aaf972db930f5c64f637ec7553 Mon Sep 17 00:00:00 2001 From: Sean O'Halpin Date: Wed, 29 Aug 2012 19:17:52 +0100 Subject: [PATCH] Fix: org-e-html-special-block had not been converted from LaTeX version * contrib/lisp/org-e-html.el (org-e-html-special-block): convert LaTeX markup to HTML This function had not been modified from its org-e-latex-special-block original so with #+BEGIN_ORG for example you would get \begin{org}...\end{org} in the output instead of
...
. TINYCHANGE --- 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 6f9007f45..f3daa1773 100644 --- a/contrib/lisp/org-e-html.el +++ b/contrib/lisp/org-e-html.el @@ -2621,7 +2621,7 @@ holding contextual information." (let ((type (downcase (org-element-property :type special-block)))) (org-e-html--wrap-label special-block - (format "\\begin{%s}\n%s\\end{%s}" type contents type)))) + (format "
\n%s\n
" type contents)))) ;;;; Src Block -- 2.11.4.GIT