Function: markdown-table-end

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

Signature

(markdown-table-end)

Documentation

Find the end of the table and return its position.

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-end ()
  "Find the end of the table and return its position.
This function assumes point is on a table."
  (save-excursion
    (while (and (not (eobp))
                (markdown-table-at-point-p))
      (forward-line 1))
    (point)))