This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: problems again!



> My tags are arraigned in the following way:
> 
> <this>
>   This for the freeflowing text. Incase if you any problems, please
>   contact <link url="x.html">me</link> and some other text goes
>   here.
> </this>
> 
> As you see above I want to place a hyperlink in the middle of 
> the text

<xsl:template match="this">
<para><xsl:apply-templates/></para>

</xsl:template>

<xsl:template match="link">
 <a href="{@url}"><xsl:apply-templates/></a>
</xsl:template>


HTH DaveP

> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]