Variable: markdown-ts-hard-line-break-backslash
markdown-ts-hard-line-break-backslash is a customizable variable
defined in markdown-ts-mode.el.gz.
Value
(182 . 124)
Documentation
If markup is hidden, display this character for a backslash hard line break.
The value is a cons (PREFERRED . FALLBACK): PREFERRED is used if it passes
char-displayable-p, otherwise FALLBACK is used.
nil keeps 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-hard-line-break-backslash '(?¶ . ?|)
"If markup is hidden, display this character for a backslash hard line break.
The value is a cons (PREFERRED . FALLBACK): PREFERRED is used if it passes
`char-displayable-p', otherwise FALLBACK is used.
nil keeps the raw markup."
:type '(choice (cons (character :tag "Preferred (GUI)")
(character :tag "Fallback (TTY)"))
(const :tag "Display original markup" nil)
(const :tag "Hide markup" hide))
:version "31.1"
:package-version "1.0")