Function: cider--external-body-url
cider--external-body-url is a byte-compiled function defined in
cider-eval.el.
Signature
(cider--external-body-url CONTENT-TYPE)
Documentation
Return the URL referenced by an external-body CONTENT-TYPE, or nil.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--external-body-url (content-type)
"Return the URL referenced by an external-body CONTENT-TYPE, or nil."
(pcase-let ((`(,type ,attrs) content-type))
(when (equal type "message/external-body")
(when-let* ((access-type (nrepl-dict-get attrs "access-type")))
(nrepl-dict-get attrs access-type)))))