Variable: markdown-regex-math-inline-single

markdown-regex-math-inline-single is a variable defined in markdown-mode.el.

Value

"\\(?:^\\|[^\\]\\)\\(?1:\\$\\)\\(?2:\\(?:[^\\$]\\|\\\\.\\)*\\)\\(?3:\\$\\)"

Documentation

Regular expression for itex $..$ math mode expressions.

Groups 1 and 3 match the opening and closing dollar signs. Group 2 matches the mathematical expression contained within.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defconst markdown-regex-math-inline-single
  "\\(?:^\\|[^\\]\\)\\(?1:\\$\\)\\(?2:\\(?:[^\\$]\\|\\\\.\\)*\\)\\(?3:\\$\\)"
  "Regular expression for itex $..$ math mode expressions.
Groups 1 and 3 match the opening and closing dollar signs.
Group 2 matches the mathematical expression contained within.")