Variable: hfy-page-header
hfy-page-header is a customizable variable defined in
htmlfontify.el.gz.
Value
hfy-default-header
Documentation
Function called to build the header of the HTML source.
This is called with two arguments (the filename relative to the top level source directory being etag'd and fontified), and a string containing the <style>...</style> text to embed in the document. It should return a string that will be used as the header for the htmlfontified version of the source file.
See also hfy-page-footer.
Source Code
;; Defined in /usr/src/emacs/lisp/htmlfontify.el.gz
(defcustom hfy-page-header #'hfy-default-header
"Function called to build the header of the HTML source.
This is called with two arguments (the filename relative to the top
level source directory being etag'd and fontified), and a string containing
the <style>...</style> text to embed in the document.
It should return a string that will be used as the header for the
htmlfontified version of the source file.
See also `hfy-page-footer'."
;; FIXME: Why place such a :tag everywhere? Isn't it imposing your
;; own Custom preference on your users? --Stef
:tag "page-header"
:type '(function))