12345678910111213141516171819202122232425 |
- <?xml version="1.0" encoding="utf-8"?>
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
- <xsl:template match="indexterm"/>
- <xsl:template match="@role"/>
- <xsl:template match="@label"/>
- <xsl:template match="@id"/>
-
- <xsl:template match="link">
- <xsl:value-of select="."/>
- </xsl:template>
-
- <xsl:template match="glossdiv">
- <xsl:apply-templates select="glossentry"/>
- </xsl:template>
-
- <xsl:template match="*|@*">
- <xsl:copy>
- <xsl:apply-templates select="@*"/>
- <xsl:apply-templates/>
- </xsl:copy>
- </xsl:template>
- </xsl:stylesheet>
|