Function: markdown-table-hline-at-point-p

markdown-table-hline-at-point-p is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-table-hline-at-point-p)

Documentation

Return non-nil when point is on a hline in a table.

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-hline-at-point-p ()
  "Return non-nil when point is on a hline in a table.
This function assumes point is on a table."
  (save-excursion
    (beginning-of-line)
    (looking-at-p markdown-table-hline-regexp)))