Function: cal-html-monthpage-name
cal-html-monthpage-name is a byte-compiled function defined in
cal-html.el.gz.
Signature
(cal-html-monthpage-name MONTH YEAR)
Documentation
Return name of html page for numeric MONTH and four-digit YEAR.
For example, "2006-08.html" for 8 2006.
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/cal-html.el.gz
(defun cal-html-monthpage-name (month year)
"Return name of html page for numeric MONTH and four-digit YEAR.
For example, \"2006-08.html\" for 8 2006."
(format "%d-%.2d.html" year month))