Function: markdown-ts--list-node-bol

markdown-ts--list-node-bol is a byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts--list-node-bol NODE)

Documentation

Return the beginning of the line containing NODE's start.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--list-node-bol (node)
  "Return the beginning of the line containing NODE's start."
  (save-excursion
    (goto-char (treesit-node-start node))
    (line-beginning-position)))