Variable: hfy-html-quote-map
hfy-html-quote-map is a customizable variable defined in
htmlfontify.el.gz.
Value
(("\"" """) ("<" "<") ("&" "&") (">" ">"))
Documentation
Alist of char -> entity mappings used to make the text HTML-safe.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defcustom hfy-html-quote-map '(("\"" """)
("<" "<" )
("&" "&" )
(">" ">" ))
"Alist of char -> entity mappings used to make the text HTML-safe."
:tag "html-quote-map"
:type '(alist :key-type (string)))