Function: cider--display-rich-content
cider--display-rich-content is a byte-compiled function defined in
cider-eval.el.
Signature
(cider--display-rich-content BODY CONTENT-TYPE POINT)
Documentation
Display BODY of CONTENT-TYPE per cider-eval-rich-content-destination.
POINT anchors inline overlays. Return non-nil when the content was rendered; nil means the caller should fall back to a plain display.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-eval.el
(defun cider--display-rich-content (body content-type point)
"Display BODY of CONTENT-TYPE per `cider-eval-rich-content-destination'.
POINT anchors inline overlays. Return non-nil when the content was
rendered; nil means the caller should fall back to a plain display."
(pcase cider-eval-rich-content-destination
('inline (cider--render-rich-content-inline body content-type point))
('repl (cider--render-rich-content-repl body content-type))
('popup (cider--render-rich-content-popup body content-type))
(_ nil)))