Variable: markdown-footnote-display

markdown-footnote-display is a customizable variable defined in markdown-mode.el.

Value

((raise 0.2) (height 0.8))

Documentation

Display specification for footnote markers and inline footnotes.

By default, footnote text is reduced in size and raised. Set to nil to disable this.

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-footnote-display '((raise 0.2) (height 0.8))
  "Display specification for footnote markers and inline footnotes.
By default, footnote text is reduced in size and raised.  Set to
nil to disable this."
  :group 'markdown
  :type '(choice (sexp :tag "Display specification")
                 (const :tag "Don't set display property" nil))
  :package-version '(markdown-mode . "2.4"))