Skip to content

Commit

Permalink
add by-mfg anchors to formatted decoder index
Browse files Browse the repository at this point in the history
  • Loading branch information
bobjacobsen committed Oct 21, 2018
1 parent 9d4fd61 commit c788b8b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion xml/XSLT/DecoderID.xsl
Expand Up @@ -62,7 +62,11 @@ This page was produced by <a href="http://jmri.org">JMRI</a>.
<!-- Index through manufacturers -->
<xsl:template match="decoderIndex-config/decoderIndex/mfgList/manufacturer">
<xsl:if test="not( @mfg = 'NMRA' )" >
<h3><xsl:value-of select="@mfg"/> CV8=<xsl:value-of select="@mfgID"/></h3>
<xsl:element name="a">
<xsl:attribute name="name"><xsl:value-of select="@mfgID"/></xsl:attribute>
<xsl:attribute name="id"><xsl:value-of select="@mfgID"/></xsl:attribute>
</xsl:element>
<h3><xsl:value-of select="@mfg"/> CV8=<xsl:value-of select="@mfgID"/></h3>
<xsl:call-template name="familyTable">
<xsl:with-param name="mfgname" select="@mfg"/>
</xsl:call-template>
Expand Down

0 comments on commit c788b8b

Please sign in to comment.