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:
parent
e541a1dd19
commit
510f5a9ba9
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue