Function: org-cite-export-citation
org-cite-export-citation is a byte-compiled function defined in
oc.el.gz.
Signature
(org-cite-export-citation CITATION _ INFO)
Documentation
Export CITATION object according to INFO property list.
This function delegates the export of the current citation to the selected citation processor.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-export-citation (citation _ info)
"Export CITATION object according to INFO property list.
This function delegates the export of the current citation to the
selected citation processor."
(pcase (plist-get info :cite-export)
('nil nil)
(`(,p ,_ ,_)
(funcall (org-cite-processor-export-citation (org-cite--get-processor p))
citation
(org-cite-citation-style citation info)
(plist-get info :back-end)
info))
(other (error "Invalid `:cite-export' value: %S" other))))