[xsl] Perform two tasks at same time same template

Subject: [xsl] Perform two tasks at same time same template
From: "J. S. Rawat" <jrawat@xxxxxxxxxxxxxx>
Date: Mon, 12 Jan 2009 14:55:25 +0530
Hi,
I want to remove outside parenthesis and as well as the text within <seealso>. Is is possible at the same time when we are applying template for "seealso" somthing like


<xsl:template match="seealso">
 <xsl:if test="">
</xsl:if>
</xsl:template>

Input
<p> xxxx. (<seealso>See also xxx.</seealso>)</p>

OUTPUT
<para> xxxx.</para>

...JSR

Current Thread