Function: org-odt-subscript

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

Signature

(org-odt-subscript SUBSCRIPT CONTENTS INFO)

Documentation

Transcode a SUBSCRIPT object from Org to ODT.

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

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Subscript

(defun org-odt-subscript (_subscript contents _info)
  "Transcode a SUBSCRIPT object from Org to ODT.
CONTENTS is the contents of the object.  INFO is a plist holding
contextual information."
  (format "<text:span text:style-name=\"%s\">%s</text:span>"
	  "OrgSubscript" contents))