From 510f5a9ba9a7171bded02abd248423ae2f982ba1 Mon Sep 17 00:00:00 2001 From: Jambunathan K Date: Sun, 3 Mar 2013 13:51:32 +0530 Subject: [PATCH] ox-html.el (org-html-code, org-html-verbatim): Transcode value * lisp/ox-html.el (org-html-code, org-html-verbatim): Transcode value. --- lisp/ox-html.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lisp/ox-html.el b/lisp/ox-html.el index c76f1f808..137526a70 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1907,7 +1907,7 @@ channel." CONTENTS is nil. INFO is a plist holding contextual information." (format (or (cdr (assq 'code org-html-text-markup-alist)) "%s") - (org-element-property :value code))) + (org-html-plain-text (org-element-property :value code) info))) ;;;; Drawer @@ -3037,7 +3037,7 @@ holding contextual information." CONTENTS is nil. INFO is a plist holding contextual information." (format (or (cdr (assq 'verbatim org-html-text-markup-alist)) "%s") - (org-element-property :value verbatim))) + (org-html-plain-text (org-element-property :value verbatim) info))) ;;;; Verse Block -- 2.11.4.GIT