Subject: Re: Extra xmlns=""
From: Jeni Tennison <mail@xxxxxxxxxxxxxxxx>
Date: Tue, 17 Jul 2001 08:02:41 +0100
|
Hi Larry,
> My stylesheet is taking a no-namespace DocBook tree and parsing it
> into an XHTML file, with a single namespace declaration in the
> <html> tag, with no namespace prefix (that is, xmlns="whatever the
> URI is for XHTML").
Perhaps you're copying some of the elements from the no-namespace
DocBook source into the XHTML output? Instead, use:
<xsl:element name="{local-name()}">
...
</xsl:element>
(in a recursive template, if you need deep copies) to copy the
elements into the stylesheet's default namespace (XHTML).
Cheers,
Jeni
---
Jeni Tennison
http://www.jenitennison.com/
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|