2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3 <xsl:output method="text" encoding="ISO-8859-1"/>
5 <xsl:template match="/">
9 Note that this is automatically generated from the news webpage at:
10 http://xmlsoft.org/news.html
13 <xsl:apply-templates select="//h3[1]/.."/>
15 <xsl:template match="h3">
18 <xsl:apply-templates/>
19 <xsl:text>:</xsl:text>
21 <xsl:template match="ul">
22 <xsl:apply-templates select=".//li"/>
26 <xsl:template match="li">
27 <xsl:text> - </xsl:text>
28 <xsl:value-of select="."/>
32 <xsl:template match="a">
33 <xsl:value-of select="."/>
36 <xsl:value-of select="@href"/>