Variable: markdown-ts-checked-checkbox

markdown-ts-checked-checkbox is a customizable variable defined in markdown-ts-mode.el.gz.

Value

("☑" . "+")

Documentation

If markup is hidden, display this for a checked task list marker.

Value forms:
 - cons (PREFERRED . FALLBACK): PREFERRED is used if its first character
   passes char-displayable-p, otherwise FALLBACK.
 - symbol icon: defer to the icons.el icon
   markdown-ts-checked-checkbox-icon; customize via
   M-x customize-icon (customize-icon).
 - 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-checked-checkbox '("☑" . "+")
  "If markup is hidden, display this for a checked task list marker.
Value forms:
 - cons (PREFERRED . FALLBACK): PREFERRED is used if its first character
   passes `char-displayable-p', otherwise FALLBACK.
 - symbol `icon': defer to the icons.el icon
   `markdown-ts-checked-checkbox-icon'; customize via
   \\[customize-icon].
 - nil: display the raw markup."
  :type '(choice (cons (string :tag "Preferred (GUI)")
                       (string :tag "Fallback (TTY)"))
                 (const :tag "Use icons.el icon" icon)
                 (const :tag "Display original markup" nil))
  :version "31.1"
  :package-version "1.0")