In a feedburner RSS I use
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node() | @*" />
</xsl:copy>
</xsl:template>
to get all the content of a feed with structure like below :
<feed>
<entry><published></published><title></title><content></content>....</entry>
</feed>
My question is, if it is possible to get only the 10 first <entry></entry> instead of all the 25 ? How to do it ?
Note : The entry tag has this form <entry gd:etag="W/"AkcHRH8yfSp7ImA9WhdUFkg.""> I do not know if this matters
smth like
I mean, you need add this template:
That drop all the entries after 10’s, or something equal. The main suggestion is to take a look at
position()function.