Function: markdown--table-at-point-p
markdown--table-at-point-p is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown--table-at-point-p)
Documentation
Return non-nil when point is inside a table.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown--table-at-point-p ()
"Return non-nil when point is inside a table."
(save-excursion
(beginning-of-line)
(and (looking-at-p markdown-table-line-regexp)
(not (markdown-code-block-at-point-p)))))