Variable: markdown-ts-thematic-break-character

markdown-ts-thematic-break-character is a customizable variable defined in markdown-ts-mode.el.gz.

Value

(9472 . 45)

Documentation

If markup is hidden, display this character for thematic breaks.

It is repeated to fill the window width. This assumes a static window width. You may prefer an :extend attribute on the markdown-ts-thematic-break which will span window width dynamically using an underline, in which case this character is ignored. The value is a cons (PREFERRED . FALLBACK): PREFERRED is used if it passes char-displayable-p, otherwise FALLBACK is used. Use nil to 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-thematic-break-character '(?─ . ?-)
  "If markup is hidden, display this character for thematic breaks.
It is repeated to fill the window width.  This assumes a static window
width.
You may prefer an `:extend' attribute on the
`markdown-ts-thematic-break' which will span window width dynamically
using an underline, in which case this character is ignored.
The value is a cons (PREFERRED . FALLBACK): PREFERRED is used if it passes
`char-displayable-p', otherwise FALLBACK is used.
Use nil to display the raw markup."
  :type '(choice (cons (character :tag "Preferred (GUI)")
                       (character :tag "Fallback (TTY)"))
                 (const :tag "Display original markup" nil))
  :version "31.1"
  :package-version "1.0")