<?xml version='1.0'?>
<xsl:stylesheet
          xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'>
<xsl:output method="text" encoding="US-ASCII"/>
<xsl:template match="text()"/> <!-- to avoid other items -->
<xsl:template match="li">
	<!--xsl:value-of select="." /-->
        <xsl:choose>
                <xsl:when test="contains(., 'Sun Alert ID:') or
		contains(., 'Synopsis') or
		contains(., 'Category') or
		contains(., 'Product') or
		contains(., 'BugIDs') or
		contains(., 'Avoidance') or
		contains(., 'State') or
		contains(., 'Date Closed') or
		contains(., 'Date Modified') or
		contains(., 'Date Released') or
		contains(., 'Escalation IDs')
		">
                        <xsl:value-of select="normalize-space(.)"/>
			<xsl:text>
</xsl:text>
                </xsl:when>
		<xsl:otherwise>
			<xsl:apply-templates/>
		</xsl:otherwise>
        </xsl:choose>
</xsl:template>
</xsl:stylesheet>
