Re: [xsl] pulling object at their correponsing callout

Subject: Re: [xsl] pulling object at their correponsing callout
From: Ganesh Babu N <nbabuganesh@xxxxxxxxx>
Date: Thu, 24 Feb 2011 11:29:14 +0530
Dear Rawat,

xsl:key is the best suitable for this type of action.

Regards,
Ganesh


On Thu, Feb 24, 2011 at 11:21 AM, JS rawat <jrawat@xxxxxxxxxxxxxx> wrote:
> Hi Team,
> Could anyone help me out to solve below below using xslt 2.0
>
> Input
> <article>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> <p>text text <link rid="f1 fl2" type="figure">Figure 1-2</link> text
> text</p>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> <object id="f1" position="floating" type="figure">figure caption1</object>
> <object id="f2" position="floating" type="figure">figure caption2</object>
> </article>
>
>
> Output
> <article>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> <object id="f1" position="floating" type="figure">figure caption1</object>
>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> <p>text text <link rid="f1 fl2" type="figure">Figure 1-2</link> text
> text</p>
> <object id="f2" position="floating" type="figure">figure caption2</object>
>
>
> <p>text text <link rid="f1" type="figure">Figure 1</link> text text</p>
> </article>
>
> Thanks in advance
> ...JSR

Current Thread