Function: org-cite-capitalize
org-cite-capitalize is a byte-compiled function defined in oc.el.gz.
Signature
(org-cite-capitalize STR)
Documentation
Capitalize string of raw string object STR.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-capitalize (str)
"Capitalize string of raw string object STR."
(cond
((stringp str) (capitalize str))
((org-element-type-p str 'raw)
(org-export-raw-string
(capitalize (mapconcat #'identity (org-element-contents str) ""))))
(t (error "%S must be either a string or raw string object" str))))