Function: markdown-fontify-tables

markdown-fontify-tables is a byte-compiled function defined in markdown-mode.el.

Signature

(markdown-fontify-tables LAST)

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-fontify-tables (last)
  (when (re-search-forward "|" last t)
    (when (markdown-table-at-point-p)
      (font-lock-append-text-property
       (line-beginning-position) (min (1+ (line-end-position)) (point-max))
       'face 'markdown-table-face))
    (forward-line 1)
    t))