Function: markdown-ts--list-marker-width
markdown-ts--list-marker-width is a byte-compiled function defined in
markdown-ts-mode.el.gz.
Signature
(markdown-ts--list-marker-width ITEM)
Documentation
Return the width of ITEM's list marker including trailing space.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--list-marker-width (item)
"Return the width of ITEM's list marker including trailing space."
(let ((marker (treesit-node-child item 0)))
(- (treesit-node-end marker) (treesit-node-start marker))))