ox-html.el (org-html-code, org-html-verbatim): Transcode value

* lisp/ox-html.el (org-html-code, org-html-verbatim):
Transcode value.
This commit is contained in:
Jambunathan K 2013-03-03 13:51:32 +05:30 committed by Nicolas Goaziou
parent e541a1dd19
commit 510f5a9ba9
1 changed files with 2 additions and 2 deletions

View File

@ -1907,7 +1907,7 @@ channel."
CONTENTS is nil. INFO is a plist holding contextual CONTENTS is nil. INFO is a plist holding contextual
information." information."
(format (or (cdr (assq 'code org-html-text-markup-alist)) "%s") (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 ;;;; Drawer
@ -3037,7 +3037,7 @@ holding contextual information."
CONTENTS is nil. INFO is a plist holding contextual CONTENTS is nil. INFO is a plist holding contextual
information." information."
(format (or (cdr (assq 'verbatim org-html-text-markup-alist)) "%s") (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 ;;;; Verse Block