[XSL-LIST Mailing List Archive Home]
[By Thread]
[By Date]
Re: [xsl] Find and change an attribute in a Processing Instruction
Subject: Re: [xsl] Find and change an attribute in a Processing Instruction
From: "Rick Quatro" <frameexpert@xxxxxxxxxxxx>
Date: Mon, 30 Jan 2006 15:08:56 -0500
|
Thanks to Jon Gorman, I've got my stylesheet working. There is one more
issue, though.
<xsl:template match="processing-instruction()">
<xsl:processing-instruction name="Fm">
<xsl:call-template name="do-replace">
<xsl:with-param name="text" select="."/>
</xsl:call-template>
</xsl:processing-instruction>
</xsl:template>
When I encounter a processing instruction, I am re-writing it after calling
the do-replace template. However, in the line
<xsl:processing-instruction name="Fm">
I am hardcoding the name of the processing instruction. How can I use the
name of the current processing instruction instead of hard coding a name.
Thanks in advance.
Rick Quatro
Carmen Publishing
585-659-8267
www.frameexpert.com
|