Variable: markdown-marginalize-headers-margin-width

markdown-marginalize-headers-margin-width is a customizable variable defined in markdown-mode.el.

Value

6

Documentation

Character width of margin used for marginalized headers.

The default value is based on there being six heading levels defined by Markdown and HTML. Increasing this produces extra whitespace on the left. Decreasing it may be preferred when fewer than six nested heading levels are used.

This variable was added, or its default value changed, in markdown-mode version 2.4.

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-marginalize-headers-margin-width 6
  "Character width of margin used for marginalized headers.
The default value is based on there being six heading levels
defined by Markdown and HTML.  Increasing this produces extra
whitespace on the left.  Decreasing it may be preferred when
fewer than six nested heading levels are used."
  :group 'markdown
  :type 'integer
  :safe 'natnump
  :package-version '(markdown-mode . "2.4"))