Function: markdown-escape-title
markdown-escape-title is a byte-compiled function defined in
markdown-mode.el.
Signature
(markdown-escape-title TITLE)
Documentation
Escape a minimum set of characters in TITLE so they don't clash with html.
Source Code
;; Defined in ~/.emacs.d/elpa/markdown-mode-20260321.143/markdown-mode.el
(defun markdown-escape-title (title)
"Escape a minimum set of characters in TITLE so they don't clash with html."
(replace-regexp-in-string ">" ">"
(replace-regexp-in-string "<" "<"
(replace-regexp-in-string "&" "&" title))))