Function: org-latex-statistics-cookie
org-latex-statistics-cookie is a byte-compiled function defined in
ox-latex.el.gz.
Signature
(org-latex-statistics-cookie STATISTICS-COOKIE CONTENTS INFO)
Documentation
Transcode a STATISTICS-COOKIE object from Org to LaTeX.
CONTENTS is nil. INFO is a plist holding contextual information.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-latex.el.gz
;;;; Statistics Cookie
(defun org-latex-statistics-cookie (statistics-cookie _contents _info)
"Transcode a STATISTICS-COOKIE object from Org to LaTeX.
CONTENTS is nil. INFO is a plist holding contextual information."
(replace-regexp-in-string
"%" "\\%" (org-element-property :value statistics-cookie) nil t))