Function: cal-html-comment
cal-html-comment is a byte-compiled function defined in
cal-html.el.gz.
Signature
(cal-html-comment STRING)
Documentation
Return STRING as html comment.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-html.el.gz
(defun cal-html-comment (string)
"Return STRING as html comment."
(format "<!-- ====== %s ====== -->\n"
(string-replace "--" "++" string)))