Function: cider--render-rich-content-popup
cider--render-rich-content-popup is a byte-compiled function defined
in cider-eval.el.
Signature
(cider--render-rich-content-popup BODY CONTENT-TYPE)
Documentation
Render BODY of CONTENT-TYPE in the *cider-result* popup buffer.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--render-rich-content-popup (body content-type)
"Render BODY of CONTENT-TYPE in the `*cider-result*' popup buffer."
(let ((buffer (cider-popup-buffer cider-result-buffer nil (cider--preferred-clojure-mode) 'ancillary)))
(cider--popup-insert-rich-content buffer body content-type)
t))