Function: org-texinfo-subscript

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

Signature

(org-texinfo-subscript SUBSCRIPT CONTENTS INFO)

Documentation

Transcode a SUBSCRIPT 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
;;;; Subscript

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