Function: org-cite-parse-objects
org-cite-parse-objects is a byte-compiled function defined in
oc.el.gz.
Signature
(org-cite-parse-objects S &optional AFFIX)
Documentation
Parse string S as a secondary string.
The return value is suitable as a replacement for a citation object.
When optional argument AFFIX is non-nil, restrict the set of allowed object types to match the contents of a citation affix.
Source Code
;; Defined in /usr/src/emacs/lisp/org/oc.el.gz
(defun org-cite-parse-objects (s &optional affix)
"Parse string S as a secondary string.
The return value is suitable as a replacement for a citation object.
When optional argument AFFIX is non-nil, restrict the set of allowed object
types to match the contents of a citation affix."
(org-element-parse-secondary-string
s (org-element-restriction (if affix 'citation-reference 'paragraph))))