Function: cider-repl-handle-html

cider-repl-handle-html is a byte-compiled function defined in cider-repl.el.

Signature

(cider-repl-handle-html TYPE BUFFER HTML &optional SHOW-PREFIX BOL)

Documentation

A handler for rendering text/html HTML into the repl BUFFER.

Part of the default cider-repl-content-type-handler-alist.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260822.1520/cider-repl.el
(defun cider-repl-handle-html (_type buffer html &optional show-prefix bol)
  "A handler for rendering text/html HTML into the repl BUFFER.
Part of the default `cider-repl-content-type-handler-alist'."
  (cider-repl--emit-verbatim buffer (cider--render-html-string html)
                             show-prefix bol)
  t)