Function: cal-html-insert-link-yearpage

cal-html-insert-link-yearpage is a byte-compiled function defined in cal-html.el.gz.

Signature

(cal-html-insert-link-yearpage MONTH YEAR)

Documentation

Insert a link tagged with MONTH name, to index page for four-digit YEAR.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/cal-html.el.gz
(defun cal-html-insert-link-yearpage (month year)
  "Insert a link tagged with MONTH name, to index page for four-digit YEAR."
  (insert (cal-html-h1
           (format "%s %s"
                   (calendar-month-name month)
                   (cal-html-href "index.html" (number-to-string year))))))