Hi
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?
Input:
<?xml version="1.0" encoding="UTF-8"?>
<html>
<head>
<title>Vítejte</title>
</head>
<body id="home">
<body>
</html>
XSL:
<xsl:template match="/html">
<html xmlns="http://www.w3.org/1999/xhtml">
<xsl:sequence select="./node()"/>
</html>
</xsl:template>
Output:
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head xmlns="">
<title>Vítejte</title>
</head>
<body xmlns="" id="home">
<body>
</html>
Thanks
This is a confidential email. Tesco may monitor and record all emails. The
views expressed in this email are those of the sender and not Tesco.
Tesco Stores Limited
Company Number: 519500
Registered in England
Registered Office: Tesco House, Delamare Road, Cheshunt, Hertfordshire EN8 9SL
VAT Registration Number: GB 220 4302 31
--~------------------------------------------------------------------
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>
--~--