Function: org-texinfo-superscript

org-texinfo-superscript is a byte-compiled function defined in ox-texinfo.el.gz.

Signature

(org-texinfo-superscript SUPERSCRIPT CONTENTS INFO)

Documentation

Transcode a SUPERSCRIPT object from Org to Texinfo.

CONTENTS is the contents of the object. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-texinfo.el.gz
;;;; Superscript

(defun org-texinfo-superscript (_superscript contents _info)
  "Transcode a SUPERSCRIPT object from Org to Texinfo.
CONTENTS is the contents of the object.  INFO is a plist holding
contextual information."
  (format "@math{^%s}" contents))