Function: org-persist-associated-files:url
org-persist-associated-files:url is a byte-compiled function defined
in org-persist.el.gz.
Signature
(org-persist-associated-files:url CONTAINER COLLECTION)
Documentation
List url CONTAINER associated files of COLLECTION in org-persist-directory.
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-persist.el.gz
(defun org-persist-associated-files:url (container collection)
"List url CONTAINER associated files of COLLECTION in `org-persist-directory'."
(let ((file (org-persist-read container (plist-get collection :associated))))
(when (file-exists-p file)
(list file))))