Function: cider-repl-handle-svg
cider-repl-handle-svg is a byte-compiled function defined in
cider-repl.el.
Signature
(cider-repl-handle-svg TYPE BUFFER IMAGE &optional SHOW-PREFIX BOL)
Documentation
A handler for inserting an svg IMAGE into a repl BUFFER.
Part of the default cider-repl-content-type-handler-alist.
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-repl-handle-svg (_type buffer image &optional show-prefix bol)
"A handler for inserting an svg IMAGE into a repl BUFFER.
Part of the default `cider-repl-content-type-handler-alist'."
(cider-repl--display-image buffer
(cider-repl--image image 'svg t)
show-prefix bol))