Function: org-cite--get-processor
org-cite--get-processor is a byte-compiled function defined in
oc.el.gz.
Signature
(org-cite--get-processor NAME)
Documentation
Return citation processor named after symbol NAME.
Return nil if no such processor is found.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite--get-processor (name)
"Return citation processor named after symbol NAME.
Return nil if no such processor is found."
(seq-find (lambda (p) (eq name (org-cite-processor-name p)))
org-cite--processors))