Function: org-cite-list-keys

org-cite-list-keys is a byte-compiled function defined in oc.el.gz.

Signature

(org-cite-list-keys INFO)

Documentation

List citation keys in the exported document.

Keys are ordered by first appearance in the document, when following footnotes. Duplicate keys are removed. INFO is the export communication channel, as a property list.

Source Code

;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-list-keys (info)
  "List citation keys in the exported document.
Keys are ordered by first appearance in the document, when following footnotes.
Duplicate keys are removed.  INFO is the export communication channel, as a
property list."
  (delete-dups
   (org-element-map (org-cite-list-citations info) 'citation-reference
     (lambda (r) (org-element-property :key r))
     info)))