|
Subject: Re: [xsl] need xsl template for this xml and html From: Martin Honnen <Martin.Honnen@xxxxxx> Date: Wed, 25 May 2011 18:05:16 +0200 |
I'm integrating content from a 3rd party, where part of the XML looks like this (i've modified the content from the original):
<item> <ref id="ireland"> <b>Republic of Ireland</b> </ref>: is a country with a population of 5 million ... </item>
The resultant HTML that I WANT will look something like this:
<li><a href="country.aspx?id=ireland">Republic of Ireland</a>: is a country with a population of 5 million ...</li>
<xsl:template match="item">
<li>
<xsl:apply-templates/>
</li>
</xsl:template><xsl:template match="ref">
<a href="country.aspx?id={@id}">
<xsl:value-of select="normalize-space()"/>
</a>
</xsl:template>Martin Honnen --- MVP Data Platform Development http://msmvps.com/blogs/martin_honnen/
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| [xsl] need xsl template for this xm, Frank Brooks | Thread | Re: [xsl] need xsl template for thi, Frank Brooks |
| [xsl] need xsl template for this xm, Frank Brooks | Date | Re: [xsl] need xsl template for thi, Frank Brooks |
| Month |