<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="opml/body">
      <xsl:for-each select="outline">
      <xsl:sort select="@title"/>
        <a>
        <xsl:attribute name="href">
        <xsl:value-of select="@xmlUrl"/>
        </xsl:attribute>xml</a> - <a>
        <xsl:attribute name="href">
        <xsl:value-of select="@htmlUrl"/>
        </xsl:attribute>
        <xsl:attribute name="title">
        <xsl:value-of select="@description"/>
        </xsl:attribute>
   <xsl:value-of select="substring(@title,1,18)" />
        </a><br />
      </xsl:for-each>
</xsl:template>
</xsl:stylesheet>
