Function: org-odt-superscript
org-odt-superscript is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt-superscript SUPERSCRIPT CONTENTS INFO)
Documentation
Transcode a SUPERSCRIPT object from Org to ODT.
CONTENTS is the contents of the object. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Superscript
(defun org-odt-superscript (_superscript contents _info)
"Transcode a SUPERSCRIPT object from Org to ODT.
CONTENTS is the contents of the object. INFO is a plist holding
contextual information."
(format "<text:span text:style-name=\"%s\">%s</text:span>"
"OrgSuperscript" contents))