Variable: markdown-hr-display-char

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

Value

(9472 9473 45)

Documentation

Character for hiding horizontal rule markup.

This may be a single character or a list of characters. In case of a list, the first one that satisfies char-displayable-p will be used.

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

Source Code

;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defcustom markdown-hr-display-char
  '(?─ ?━ ?-)
  "Character for hiding horizontal rule markup.
This may be a single character or a list of characters.  In case
of a list, the first one that satisfies `char-displayable-p' will
be used."
  :group 'markdown
  :type '(choice
          (character :tag "Single HR display character")
          (repeat :tag "List of possible HR display characters" character))
  :package-version '(markdown-mode . "2.3"))