Variable: markdown-url-compose-char

markdown-url-compose-char is a customizable variable defined in markdown-mode.el.

Value

(8734 8230 8943 35 9733 9875)

Documentation

Placeholder character for hidden URLs.

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-url-compose-char
  '(?∞ ?… ?⋯ ?# ?★ ?⚓)
  "Placeholder character for hidden URLs.
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 URL replacement character")
          (repeat :tag "List of possible URL replacement characters"
                  character))
  :package-version '(markdown-mode . "2.3"))