Function: hfy-html-quote

hfy-html-quote is a byte-compiled function defined in htmlfontify.el.gz.

Signature

(hfy-html-quote CHAR-STRING)

Documentation

Map CHAR-STRING to an HTML safe string (entity) if need be.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
;; dangerous char -> &entity;
(defun hfy-html-quote (char-string)
  "Map CHAR-STRING to an HTML safe string (entity) if need be."
  ;;(message "hfy-html-quote");;DBUG
  (or (cadr (assoc char-string hfy-html-quote-map)) char-string) )