clean-db.xsl 579 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  3. <xsl:template match="indexterm"/>
  4. <xsl:template match="@role"/>
  5. <xsl:template match="@label"/>
  6. <xsl:template match="@id"/>
  7. <xsl:template match="link">
  8. <xsl:value-of select="."/>
  9. </xsl:template>
  10. <xsl:template match="glossdiv">
  11. <xsl:apply-templates select="glossentry"/>
  12. </xsl:template>
  13. <xsl:template match="*|@*">
  14. <xsl:copy>
  15. <xsl:apply-templates select="@*"/>
  16. <xsl:apply-templates/>
  17. </xsl:copy>
  18. </xsl:template>
  19. </xsl:stylesheet>