Function: hfy-html-enkludge-buffer

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

Signature

(hfy-html-enkludge-buffer)

Documentation

Mark dangerous ["<>] characters with the hfy-quoteme property.

See also hfy-html-dekludge-buffer.

Source Code

;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
;; tag all the dangerous characters we want to escape
;; (ie any "<> chars we _didn't_ put there explicitly for css markup)
(defun hfy-html-enkludge-buffer ()
  "Mark dangerous [\"<>] characters with the `hfy-quoteme' property.

See also `hfy-html-dekludge-buffer'."
  ;;(message "hfy-html-enkludge-buffer");;DBUG
  (save-excursion
    (goto-char (point-min))
    (while (re-search-forward hfy-html-quote-regex nil t)
      (put-text-property (match-beginning 0) (point) 'hfy-quoteme t))) )