Function: org-cite-store-bibliography
org-cite-store-bibliography is a byte-compiled function defined in
oc.el.gz.
Signature
(org-cite-store-bibliography INFO)
Documentation
Store bibliography in the communication channel.
Bibliography is stored as a list of absolute file names in the :bibliography property.
INFO is the communication channel, as a plist. It is modified by side-effect.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
;;; Internal interface with Org Export library (export capability)
(defun org-cite-store-bibliography (info)
"Store bibliography in the communication channel.
Bibliography is stored as a list of absolute file names in the `:bibliography'
property.
INFO is the communication channel, as a plist. It is modified by side-effect."
(plist-put info :bibliography (org-cite-list-bibliography-files)))