Variable: markdown-regex-math-inline-double

markdown-regex-math-inline-double 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 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-double
  "\\(?:^\\|[^\\]\\)\\(?1:\\$\\$\\)\\(?2:\\(?:[^\\$]\\|\\\\.\\)*\\)\\(?3:\\$\\$\\)"
  "Regular expression for itex $$..$$ math mode expressions.
Groups 1 and 3 match opening and closing dollar signs.
Group 2 matches the mathematical expression contained within.")