summaryrefslogtreecommitdiff
path: root/endnote-to-dbxml.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'endnote-to-dbxml.xsl')
-rw-r--r--endnote-to-dbxml.xsl24
1 files changed, 0 insertions, 24 deletions
diff --git a/endnote-to-dbxml.xsl b/endnote-to-dbxml.xsl
index f8880db..1783f0a 100644
--- a/endnote-to-dbxml.xsl
+++ b/endnote-to-dbxml.xsl
@@ -91,28 +91,4 @@
</db>
</xsl:template>
-
- <xsl:template name="string-replace-all">
- <xsl:param name="text" />
- <xsl:param name="replace" />
- <xsl:param name="by" />
- <xsl:choose>
- <xsl:when test="$replace = ''">
- <xsl:value-of select="$text" />
- </xsl:when>
- <xsl:when test="contains($text, $replace)">
- <xsl:value-of select="substring-before($text,$replace)" />
- <xsl:value-of select="$by" />
- <xsl:call-template name="string-replace-all">
- <xsl:with-param name="text" select="substring-after($text,$replace)" />
- <xsl:with-param name="replace" select="$replace" />
- <xsl:with-param name="by" select="$by" />
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="$text" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
</xsl:stylesheet>