Variable: markdown-definition-display-char
markdown-definition-display-char is a customizable variable defined in
markdown-mode.el.
Value
(8280 8281 8801 8977 9674 58)
Documentation
Character for replacing definition list 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-definition-display-char
'(?⁘ ?⁙ ?≡ ?⌑ ?◊ ?:)
"Character for replacing definition list 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."
:type '(choice
(character :tag "Single definition list character")
(repeat :tag "List of possible definition list characters" character))
:package-version '(markdown-mode . "2.3"))