Variable: markdown-ts-unordered-list-marker

markdown-ts-unordered-list-marker is a customizable variable defined in markdown-ts-mode.el.gz.

Value

(("● " . "- ") ("○ " . "- ") ("◼ " . "- ") ("• " . "- "))

Documentation

If markup is hidden, display these for an unordered list marker.

Each list item marker's depth in its list controls its selected string starting at the first element and cycling through the others for deeper items. The list will be cycle around back to the beginning if there are insufficient strings to represent deep levels.

Note that the default strings have trailing spaces.

Value forms:
 - (list (cons (PREFERRED . FALLBACK)) ...): where PREFERRED is used if
   its first character passes char-displayable-p, otherwise FALLBACK.
 - nil: display the raw markup.

This variable was added, or its default value changed, in unknown version unknown.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defcustom markdown-ts-unordered-list-marker '(("● " . "- ")
                                               ("○ " . "- ")
                                               ("◼ " . "- ")
                                               ("• " . "- "))
  "If markup is hidden, display these for an unordered list marker.
Each list item marker's depth in its list controls its selected string
starting at the first element and cycling through the others for deeper
items.  The list will be cycle around back to the beginning if there are
insufficient strings to represent deep levels.

Note that the default strings have trailing spaces.

Value forms:
 - (list (cons (PREFERRED . FALLBACK)) ...): where PREFERRED is used if
   its first character passes `char-displayable-p', otherwise FALLBACK.
 - nil: display the raw markup."
  :type '(choice (repeat (cons (string :tag "Preferred (GUI)")
                               (string :tag "Fallback (TTY)")))
                 (const :tag "Display original markup" nil))
  :version "31.1"
  :package-version "1.0")