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