On 7/20/06, Andrew <[EMAIL PROTECTED]> wrote:

...So,  how do I stop all fi: tags from being stripped out in the first
stylesheet (style/{2}.xsl)?...

You have to explicitely copy them, something like

<xsl:template match="fi:*">
 <xsl:copy>
   ...usual identity copy stuff

Or, if it doesn't conflict with other templates

<xsl:template match="@*|node()">
 <xsl:copy>
   <xsl:apply-templates select="@*|node()"/>
 </xsl:copy>
</xsl:template>

-Bertrand

P.S. shouting PLEASE HELP in the subject line tends to slow down the
flow of replies - you might be more successful with very specific
subject lines and "as concise as possible" questions instead

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to