Function: markdown-list-item-at-point-p

markdown-list-item-at-point-p is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-list-item-at-point-p)

Documentation

Return t if there is a list item at the point and nil otherwise.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-list-item-at-point-p ()
  "Return t if there is a list item at the point and nil otherwise."
  (save-match-data (markdown-cur-list-item-bounds)))