Variable: markdown-header-scaling-values
markdown-header-scaling-values is a customizable variable defined in
markdown-mode.el.
Value
(2.0 1.7 1.4 1.1 1.0 1.0)
Documentation
List of scaling values for headers of level one through six.
Used when markdown-header-scaling is non-nil.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-header-scaling-values
'(2.0 1.7 1.4 1.1 1.0 1.0)
"List of scaling values for headers of level one through six.
Used when `markdown-header-scaling' is non-nil."
:type '(repeat float)
:initialize #'custom-initialize-default
:set (lambda (symbol value)
(set-default symbol value)
(markdown-update-header-faces markdown-header-scaling value)))