1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 14:04:11 +01:00

Fix linkifying <k>[[</k> in :help.

This commit is contained in:
Kris Maglione
2010-09-22 16:31:57 -04:00
parent 8cee13c9d4
commit b0e7146d7f

View File

@@ -286,7 +286,7 @@
<xsl:template name="linkify-tag">
<xsl:param name="contents" select="text()"/>
<xsl:variable name="tag" select="str:tokenize($contents, ' [!')[1]"/>
<xsl:variable name="tag" select="$contents"/>
<a href="dactyl://help-tag/{$tag}" style="color: inherit;">
<xsl:if test="contains(ancestor::*/@document-tags, concat(' ', $tag, ' '))">
<xsl:attribute name="href">#<xsl:value-of select="$tag"/></xsl:attribute>