Variable: markdown-blockquote-display-char

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

Value

("▌" "┃" ">")

Documentation

String to display when hiding blockquote markup.

This may be a single string or a list of string. 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-blockquote-display-char
  '("▌" "┃" ">")
  "String to display when hiding blockquote markup.
This may be a single string or a list of string. In case of a
list, the first one that satisfies `char-displayable-p' will be
used."
  :type '(choice
          (string :tag "Single blockquote display string")
          (repeat :tag "List of possible blockquote display strings" string))
  :package-version '(markdown-mode . "2.3"))