Re: DOCBOOK: Adding to footers in HTML output

From
Damille Cegnis
Date
2000-02-24T12:25:10+00:00
ID
Thread
Re: DOCBOOK: Adding to footers in HTML output
Norman Walsh a 嶰rit :
> 
> / Bob McIlvride <> was heard to say:
> | Is there some relatively easy way to customize the HTML stylesheet to
> | have it add a line or two to the footers below the navigation table?
> | We'd like to include a copyright notice or other standard information at
> | the bottom of each HTML page.
> 
> If you're using the DSSSL stylesheets, ($html-body-content-end$) is
> inserted before the footer navigation bar and ($html-body-end$) is
> inserted after.

Using something like that in my custom stylesheet:

(define ($html-body-start$)
  (make sequence (literal "My custom header")))

allows insertion of simple text at the all beginning of each chunk. Is
there any mean to insert sgml/html code?

Thanks, Camille.