Function: cal-html-href

cal-html-href is a byte-compiled function defined in cal-html.el.gz.

Signature

(cal-html-href LINK STRING)

Documentation

Return a hyperlink to url LINK with text STRING.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-html.el.gz
(defun cal-html-href (link string)
  "Return a hyperlink to url LINK with text STRING."
  (format "<A HREF=\"%s\">%s</A>" link string))