Function: org-odt-statistics-cookie
org-odt-statistics-cookie is a byte-compiled function defined in
ox-odt.el.gz.
Signature
(org-odt-statistics-cookie STATISTICS-COOKIE CONTENTS INFO)
Documentation
Transcode a STATISTICS-COOKIE object from Org to ODT.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-odt.el.gz
;;;; Statistics Cookie
(defun org-odt-statistics-cookie (statistics-cookie _contents _info)
"Transcode a STATISTICS-COOKIE object from Org to ODT.
CONTENTS is nil. INFO is a plist holding contextual information."
(let ((cookie-value (org-element-property :value statistics-cookie)))
(format "<text:span text:style-name=\"%s\">%s</text:span>"
"OrgCode" cookie-value)))