Function: org-element-subscript-interpreter

org-element-subscript-interpreter is a byte-compiled function defined in org-element.el.gz.

Signature

(org-element-subscript-interpreter SUBSCRIPT CONTENTS)

Documentation

Interpret SUBSCRIPT 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-subscript-interpreter (subscript contents)
  "Interpret SUBSCRIPT object as Org syntax.
CONTENTS is the contents of the object."
  (format
   (if (org-element-property :use-brackets-p subscript) "_{%s}" "_%s")
   contents))