Function: org-html-subscript
org-html-subscript is a byte-compiled function defined in
ox-html.el.gz.
Signature
(org-html-subscript SUBSCRIPT CONTENTS INFO)
Documentation
Transcode a SUBSCRIPT object from Org to HTML.
CONTENTS is the contents of the object. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Subscript
(defun org-html-subscript (_subscript contents _info)
"Transcode a SUBSCRIPT object from Org to HTML.
CONTENTS is the contents of the object. INFO is a plist holding
contextual information."
(format "<sub>%s</sub>" contents))