You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Cory Isaacson <ci...@capita2.com> on 2001/02/27 17:54:31 UTC

Question

I have a source XML document which uses namespaces, and I'm using it to
output HTML. It includes the xmlns attribute in the top-level output
element, such as below. Is there any way I can suppress this? It doesn't
hurt anything, but makes the resulting HTML harder to read.

Thanks,

Cory

Current output:
<TR xmlns:fw="http://www.compuflex.com/framework/2.0" CLASS="listData"
ONCLICK="top.doAppListRowOnClick('appFWPubDemo.xml', this);">
<TD ID="extAppName" WIDTH="194px">fwpubdemo</TD>

Desired output:
<TR CLASS="listData" ONCLICK="top.doAppListRowOnClick('appFWPubDemo.xml',
this);">
<TD ID="extAppName" WIDTH="194px">fwpubdemo</TD>