vote up 0 vote down star

Hi All, using xslt I am trying to get xhtml o/p .I have used xmlns="http://www.w3.org/1999/xhtml" in

<xsl:stylesheet>

to get xhtml o/p.Every thing is fine but in the first div I am getting the same namespace. i.e.

 <div  xmlns="http://www.w3.org/1999/xhtml">

Now how to remove xmlns="http://www.w3.org/1999/xhtml"

flag

66% accept rate
1  
can you please post your XSLT stylesheet and output tags? – Rubens Farias Oct 20 at 13:07

2 Answers

vote up 1 vote down

As others have pointed out, you may not want to do this. If you want the output to be XHTML, you need to keep the XHTML namespace declaration.

That being said, if you really want to do it:

<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

  <!-- attributes, commments, processing instructions, text: copy as is -->
  <xsl:template match="@*|comment()|processing-instruction()|text()">
    <xsl:copy-of select="."/>
  </xsl:template>

  <!-- elements: create a new element with the same name, but no namespace -->
  <xsl:template match="*">
    <xsl:element name="{local-name()}">
      <xsl:apply-templates select="@*|node()"/>
    </xsl:element>
  </xsl:template>

</xsl:stylesheet>
link|flag
vote up 1 vote down

Why would you want to remove the namespace? It's part of the XHTML specification, and you say you want XHTML output. So - where's the problem?

Apparently you start your output with <div>, otherwise you would have the namespace declaration on the <html> element.

link|flag
thats true it will come in <html> but is there any way to remove the namespace. – Wondering Oct 20 at 12:45
1  
Again: Why? It belongs to XHTML, it has to be there. – Tomalak Oct 20 at 12:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.