Function: org-cite-bibliography-style
org-cite-bibliography-style is a byte-compiled function defined in
oc.el.gz.
Signature
(org-cite-bibliography-style INFO)
Documentation
Return expected bibliography style.
INFO is a plist used as a communication channel.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-bibliography-style (info)
"Return expected bibliography style.
INFO is a plist used as a communication channel."
(pcase (plist-get info :cite-export)
(`(,_ ,style ,_) style)
(_ nil)))