Function: cider--manual-button

cider--manual-button is a byte-compiled function defined in cider-util.el.

Signature

(cider--manual-button LABEL SECTION-ID)

Documentation

Return a button string that links to the online manual.

LABEL is the displayed string, and SECTION-ID is where it points to.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-util.el
(defun cider--manual-button (label section-id)
  "Return a button string that links to the online manual.
LABEL is the displayed string, and SECTION-ID is where it points
to."
  (with-temp-buffer
    (insert-text-button
     label
     'follow-link t
     'action (lambda (&rest _) (interactive)
               (browse-url (concat (cider-manual-url)
                                   section-id))))
    (buffer-string)))