diff --git a/lisp/ox-html.el b/lisp/ox-html.el index 40ada6f3b..b9d38d991 100644 --- a/lisp/ox-html.el +++ b/lisp/ox-html.el @@ -1988,7 +1988,7 @@ channel." CONTENTS is nil. INFO is a plist holding contextual information." (format (or (cdr (assq 'code org-html-text-markup-alist)) "%s") - (org-html-plain-text (org-element-property :value code) info))) + (org-html-encode-plain-text (org-element-property :value code)))) ;;;; Drawer @@ -3096,7 +3096,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-html-plain-text (org-element-property :value verbatim) info))) + (org-html-encode-plain-text (org-element-property :value verbatim)))) ;;;; Verse Block