Function: markdown-gfm-task-list-item-at-point
markdown-gfm-task-list-item-at-point is a byte-compiled function
defined in markdown-mode.el.
Signature
(markdown-gfm-task-list-item-at-point &optional BOUNDS)
Documentation
Return non-nil if there is a GFM task list item at the point.
Optionally, the list item BOUNDS may be given if available, as
returned by markdown-cur-list-item-bounds. When a task list item
is found, the return value is the same value returned by
markdown-cur-list-item-bounds.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-gfm-task-list-item-at-point (&optional bounds)
"Return non-nil if there is a GFM task list item at the point.
Optionally, the list item BOUNDS may be given if available, as
returned by `markdown-cur-list-item-bounds'. When a task list item
is found, the return value is the same value returned by
`markdown-cur-list-item-bounds'."
(unless bounds
(setq bounds (markdown-cur-list-item-bounds)))
(> (length (nth 5 bounds)) 0))