Variable: hfy-html-quote-map

hfy-html-quote-map is a customizable variable defined in htmlfontify.el.gz.

Value

(("\"" "&quot;") ("<" "&lt;") ("&" "&amp;") (">" "&gt;"))

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 '(("\"" "&quot;")
                                ("<"  "&lt;"  )
                                ("&"  "&amp;" )
                                (">"  "&gt;"  ))
  "Alist of char -> entity mappings used to make the text HTML-safe."
  :tag   "html-quote-map"
  :type  '(alist :key-type (string)))