Function: markdown--style-map-prompt
markdown--style-map-prompt is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown--style-map-prompt)
Documentation
Return a formatted prompt for Markdown markup insertion.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
;;; Keymap ====================================================================
(defun markdown--style-map-prompt ()
"Return a formatted prompt for Markdown markup insertion."
(when markdown-enable-prefix-prompts
(concat
"Markdown: "
(propertize "bold" 'face 'markdown-bold-face) ", "
(propertize "italic" 'face 'markdown-italic-face) ", "
(propertize "code" 'face 'markdown-inline-code-face) ", "
(propertize "C = GFM code" 'face 'markdown-code-face) ", "
(propertize "pre" 'face 'markdown-pre-face) ", "
(propertize "footnote" 'face 'markdown-footnote-text-face) ", "
(propertize "F = foldable" 'face 'markdown-bold-face) ", "
(propertize "q = blockquote" 'face 'markdown-blockquote-face) ", "
(propertize "h & 1-6 = heading" 'face 'markdown-header-face) ", "
(propertize "- = hr" 'face 'markdown-hr-face) ", "
"C-h = more")))