<?xml version="1.0" encoding="gb2312"?>
<text>
<textinfo>
<position data="59,82"/>
<size data="700,40"/>
<textblock>
<font size="15" weight="200" typeface="arial" color="255,255,102" italic="0" underline="1"/>
<text data="都是一家人,不至于发展成“敌我矛盾”吧!"/>
<link data="http://www.baidu.com"/>
</textblock>
</textinfo>
<textinfo>
<position data="88,82"/>
<size data="700,40"/>
<textblock>
<font size="15" weight="200" typeface="arial" color="0,0,204" italic="0" underline="1"/>
<text data="更多请看娱乐频道"/>
<link data="changechannel/109666"/>
</textblock>
</textinfo>
</text>
<?xml version="1.0" encoding="gb2312"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/xsl/transform">
<xsl:template match="/">
<table>
<xsl:for-each select="//textblock">
<tr>
<td>
<xsl:value-of select="text/@data"/>
</td>
<td>
<a>
<xsl:attribute name="href"><xsl:value-of select="link/@data"/></xsl:attribute>
<xsl:value-of select="link/@data"/>
</a>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>