Variable: markdown-enable-math

markdown-enable-math is a customizable and buffer-local variable defined in markdown-mode.el.

Documentation

Syntax highlighting for inline LaTeX and itex expressions.

Set this to a non-nil value to turn on math support by default. Math support can be enabled, disabled, or toggled later using markdown-toggle-math or M-x markdown-toggle-math (markdown-toggle-math).

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-enable-math nil
  "Syntax highlighting for inline LaTeX and itex expressions.
Set this to a non-nil value to turn on math support by default.
Math support can be enabled, disabled, or toggled later using
`markdown-toggle-math' or \\[markdown-toggle-math]."
  :group 'markdown
  :type 'boolean
  :safe 'booleanp)