Variable: markdown-header-scaling
markdown-header-scaling is a customizable variable defined in
markdown-mode.el.
Value
nil
Documentation
Whether to use variable-height faces for headers.
When non-nil, markdown-header-face will inherit from
variable-pitch and the scaling values in
markdown-header-scaling-values will be applied to
headers of levels one through six respectively.
This variable was added, or its default value changed, in markdown-mode version 2.2.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-header-scaling nil
"Whether to use variable-height faces for headers.
When non-nil, `markdown-header-face' will inherit from
`variable-pitch' and the scaling values in
`markdown-header-scaling-values' will be applied to
headers of levels one through six respectively."
:type 'boolean
:initialize #'custom-initialize-default
:set (lambda (symbol value)
(set-default symbol value)
(markdown-update-header-faces value))
:group 'markdown-faces
:package-version '(markdown-mode . "2.2"))