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.