xsl-list
[Top] [All Lists]

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

2007-04-25 08:28:18


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

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--