RE: [docbook-apps] Any way to keep <!DOCTYPE...> definition int output of XSLT transformation?

From
Jeff Beal <>
Date
2003-07-25T18:51:08+00:00
ID
Thread
RE: [docbook-apps] Any way to keep <!DOCTYPE...> definition int output of XSLT transformation?
Use the doctype-public and doctype-system attributes of the xsl:output
element.

e.g.,
<xsl:output method="xml"
 doctype-public="-//OASIS//DTD DocBook v4.2 XML//EN"
 doctype-system="http://www.oasis-open.org/docbook/dtd..."/>

Jeff Beal

> -----Original Message-----
> From: Taro Ikai [mailto:]
> Sent: Friday, July 25, 2003 2:51 PM
> To: 
> Subject: [docbook-apps] Any way to keep <!DOCTYPE...> definition int
> output of XSLT transformation?
> 
> 
> I'm using XSL to transform a not-so-valid Docbook document 
> into a valid 
> Docbook document.
> 
> The not-so-valid document starts with a correct <!DOCTYPE 
> ...> definition 
> for Docbook.
> 
> When I run this document through XSLT (xsltproc program to be 
> exact), the 
> DOCTYPE definition 
> gets erased.
> 
> Is there a way to keep the DOCTYPE definition in the output XML file? 
> 
> The only other alternative I can think of is to use 
> <xsl:text> and print 
> the DOCTYPE 
> definition at the beginning of the document.
> 
> Taro
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: 
> For additional commands, e-mail: 
> 
> 
> 
>