Re: [xsl] (newbie) Need DOCTYPE command added to HTML transformation

Subject: Re: [xsl] (newbie) Need DOCTYPE command added to HTML transformation
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 25 Apr 2007 16:27:54 +0100
> I have everything else outputting correctly
> into HTML but this.

Note that the doctype you specified is an XML DTD (for XHTML) not an HTML
dtd so you (should) use the xml output method (or in xslt2 xhtml output
method) rather than the html output method.

In either case,

  <xsl:output doctype-public="foo" doctype-system="bah"/>

allows you to specify  the PUBLIC and SYSTEN ids.

David

Current Thread