Function: markdown-table-goto-dline

markdown-table-goto-dline is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-table-goto-dline N)

Documentation

Go to the Nth data line in the table at point.

Return t when the line exists, nil otherwise. This function assumes point is on a table.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-table-goto-dline (n)
  "Go to the Nth data line in the table at point.
Return t when the line exists, nil otherwise. This function
assumes point is on a table."
  (goto-char (markdown-table-begin))
  (let ((end (markdown-table-end)) (cnt 0))
    (while (and (re-search-forward
                 markdown-table-dline-regexp end t)
                (< (setq cnt (1+ cnt)) n)))
    (= cnt n)))