Variable: markdown-table-at-point-p-function

markdown-table-at-point-p-function is a variable defined in markdown-mode.el.

Value

markdown--table-at-point-p

Documentation

Function to decide if point is inside a table.

The indirection serves to differentiate between standard markdown tables and gfm tables which are less strict about the markup.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;; Functions for maintaining tables

(defvar markdown-table-at-point-p-function #'markdown--table-at-point-p
  "Function to decide if point is inside a table.

The indirection serves to differentiate between standard markdown
tables and gfm tables which are less strict about the markup.")