Vitaly Ostanin wrote:
> Hello.
>
> I validate html output of DocBook XSL Stylesheets 1.61.3
> (documents are DocBook XML 4.2) with http://validator.w3.org/
> and it's report what pages are invalid - no DOCTYPE specified.
>
> Actually html output is not HTML 4.01 Strict, but HTML 4.01
> Transitional.
>
> It's possible to change default values of
> "chunker.output.doctype-public"
> "chunker.output.doctype-system"
> from '' to corresponding values?
>
Sdrastvuite,
add this to your custom driver:
<xsl:param name="chunker.output.doctype-public" select="'-//W3C//DTD
HTML 4.01 Transitional//EN'"/>
<xsl:param name="chunker.output.doctype-system"
select="'http://www.w3.org/TR/html4/loose.dtd'"/>
Oliver