Function: markdown-make-gfm-checkboxes-buttons

markdown-make-gfm-checkboxes-buttons is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-make-gfm-checkboxes-buttons START END)

Documentation

Make GFM checkboxes buttons in region between START and END.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-make-gfm-checkboxes-buttons (start end)
  "Make GFM checkboxes buttons in region between START and END."
  (save-excursion
    (goto-char start)
    (let ((case-fold-search t))
      (save-excursion
        (while (re-search-forward markdown-regex-gfm-checkbox end t)
          (make-button (match-beginning 1) (match-end 1)
                       :type 'markdown-gfm-checkbox-button))))))