xsl-transformation of xml copyeditor lacks omit-xml-declaration and strip-space element
<test>
<item/>
<item/>
<item/>
</test>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" omit-xml-declaration="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/">
<test>
<xsl:apply-templates/>
</test>
</xsl:template>
<xsl:template match="item">
<no>
<go>
<xsl:value-of select="position()"/>
</go>
</no>
</xsl:template>
</xsl:stylesheet>
<?xml version="1.0" encoding="UTF-8"?>
<test>
<no>
<go>1</go>
</no>
<no>
<go>2</go>
</no>
<no>
<go>3</go>
</no>
</test>
<test><no><go>1</go></no><no><go>2</go></no><no><go>3</go></no></test>