Function: markdown-match-math-display
markdown-match-math-display is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-match-math-display LAST)
Documentation
Match bracketed display math [..] and M-x ..\ (..\) from point to LAST.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-match-math-display (last)
"Match bracketed display math \[..\] and \\[..\\] from point to LAST."
(when markdown-enable-math
(markdown-match-math-generic markdown-regex-math-display last)))