Skip to content

Commit 17bb9ad

Browse files
committed
Removed support for plugin entries.
1 parent b877638 commit 17bb9ad

1 file changed

Lines changed: 1 addition & 10 deletions

File tree

entries2html.xsl

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@
194194
<xsl:variable name="entry-name" select="@name" />
195195
<xsl:variable name="entry-name-trans" select="translate($entry-name,'$., ()/{}','s---')" />
196196
<xsl:variable name="entry-type" select="@type" />
197-
<xsl:variable name="plugin-name" select="@plugin" />
198197
<xsl:variable name="entry-index" select="position()" />
199198
<xsl:variable name="number-examples" select="count(example)" />
200199
<xsl:variable name="entry-pos" select="concat($entry-name-trans,$entry-index)" />
@@ -204,15 +203,7 @@
204203
<xsl:value-of select="$entry-pos"></xsl:value-of>
205204
</xsl:attribute>
206205
<xsl:attribute name="class">
207-
<xsl:choose>
208-
<xsl:when test="$plugin-name">
209-
<xsl:value-of select="concat('entry plugin ', $entry-type)" />
210-
</xsl:when>
211-
<xsl:otherwise>
212-
<xsl:value-of select="concat('entry ', $entry-type)" />
213-
</xsl:otherwise>
214-
</xsl:choose>
215-
206+
<xsl:value-of select="concat('entry ', $entry-type)" />
216207
</xsl:attribute>
217208
<h2 class="jq-clearfix roundTop section-title">
218209
<span class="name">

0 commit comments

Comments
 (0)