<xsl:output method="xml" indent="no"/>
- <xsl:param name="keyword.namespace" select="'Atmel.Language.C'"/>
-
<xsl:template name="generate.book.title">
<xsl:text>LUFA Library</xsl:text>
</xsl:template>
</xsl:call-template>
</xsl:variable>
- <indexterm id="{$keyword.namespace}.{$name}">
+ <indexterm id="{$name}">
<primary>
<xsl:value-of select="$book.title"/>
</primary>
</emphasis>
</xsl:template>
+ <xsl:template match="highlight[1]/text()">
+ <xsl:choose>
+ <xsl:when test="substring(., 1, 1) = '*'">
+ <xsl:value-of select="substring(., 2)"/>
+ </xsl:when>
+
+ <xsl:otherwise>
+ <xsl:value-of select="."/>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:template>
+
<xsl:template match="sp[ancestor::codeline]">
<xsl:text> </xsl:text>
</xsl:template>