Subject: Re: Using xsl:variable and replace() to remove specific characters.
From: "Mukul Gandhi" <gandhi.mukul@xxxxxxxxx>
Date: Mon, 28 Apr 2008 21:33:21 +0530
|
On 4/28/08, Richard Corfield <richard.corfield@xxxxxxx> wrote:
> <affil id="{label}">
> <xsl:value-of select="$nameStr"/>
> </affil>
>
> <affil id="2">National Radio Astronomy Observatory, ChileThe National Radio Astronomy Observatory is a facility of the National Science Foundation operated under cooperative agreement by Associated Universities, Inc.</affil>
>
> We've lost the semi-colon (excellent!) but also structure of the xml, the <footnote> tags. :-(
The child contents of <affil tag you are generating consists of only a
text node (produced with <xsl:value-of select="$nameStr"/>).
You have not written any instruction to generate markup structures
below <affil.
--
Regards,
Mukul Gandhi
|