Function: org-element-superscript-interpreter
org-element-superscript-interpreter is a byte-compiled function
defined in org-element.el.gz.
Signature
(org-element-superscript-interpreter SUPERSCRIPT CONTENTS)
Documentation
Interpret SUPERSCRIPT object as Org syntax.
CONTENTS is the contents of the object.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-element.el.gz
(defun org-element-superscript-interpreter (superscript contents)
"Interpret SUPERSCRIPT object as Org syntax.
CONTENTS is the contents of the object."
(format
(if (org-element-property :use-brackets-p superscript) "^{%s}" "^%s")
contents))