Function: org-html-statistics-cookie

org-html-statistics-cookie is a byte-compiled function defined in ox-html.el.gz.

Signature

(org-html-statistics-cookie STATISTICS-COOKIE CONTENTS INFO)

Documentation

Transcode a STATISTICS-COOKIE object from Org to HTML.

CONTENTS is nil. INFO is a plist holding contextual information.

Source Code

;; Defined in /usr/src/emacs/lisp/org/ox-html.el.gz
;;;; Statistics Cookie

(defun org-html-statistics-cookie (statistics-cookie _contents _info)
  "Transcode a STATISTICS-COOKIE object from Org to HTML.
CONTENTS is nil.  INFO is a plist holding contextual information."
  (let ((cookie-value (org-element-property :value statistics-cookie)))
    (format "<code>%s</code>" cookie-value)))