[Home] [By Thread] [By Date] [Recent Entries]
Merrilees, David wrote:
When I add a default namespace to an element, it's direct descendants acquire an xmlns="". Does anyone know why this is, or how to avoid it? The input element you copy has no namespace thus in the new document to preserve that information the serializer adds the xmlns="". If you want to put your input elements that are in no namespace into the XHTML namespace then you need to do that for each result element you create. So instead of doing xsl:copy or copy-of or sequence to copy elements from the input to the output you need to use apply-templates with e.g. <xsl:template match="*"> <xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml"> <xsl:apply-templates/> </xsl:element> </xsl:template> -- Martin Honnen http://msmvps.com/blogs/martin_honnen/
|

Cart



