This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Extra xmlns=""


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]