Variable: markdown-ts-emphasis-alist
markdown-ts-emphasis-alist is a variable defined in
markdown-ts-mode.el.gz.
Value
((98 . "**") (66 . "__") (105 . "*") (73 . "_") (115 . "~~")
(99 . "`") (97 . "***"))
Documentation
Alist of emphasis markers for markdown-ts-emphasize.
Each entry is (KEY . MARKER) where KEY is a character (not a string) and MARKER is the Markdown emphasized text prefix/suffix.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
;;; Emphasis:
(defvar markdown-ts-emphasis-alist
'((?b . "**")
(?B . "__")
(?i . "*")
(?I . "_")
(?s . "~~")
(?c . "`")
(?a . "***"))
"Alist of emphasis markers for `markdown-ts-emphasize'.
Each entry is (KEY . MARKER) where KEY is a character (not a string) and
MARKER is the Markdown emphasized text prefix/suffix.")