diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-06-28 15:41:47 +0200 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-06-28 15:41:47 +0200 |
commit | 00415cf6c1b1bde7da6983d241799488d6917eb3 (patch) | |
tree | 9836f72c943f3da09fa27dd14f9f1e924d9af533 | |
parent | ecac10cca016094dbca74cbad1f15df4e3484da8 (diff) | |
download | bible-fetch-00415cf6c1b1bde7da6983d241799488d6917eb3.tar.gz bible-fetch-00415cf6c1b1bde7da6983d241799488d6917eb3.tar.bz2 bible-fetch-00415cf6c1b1bde7da6983d241799488d6917eb3.zip |
convert.xsl: Remove unneeded copy-mode templates
-rw-r--r-- | convert.xsl | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/convert.xsl b/convert.xsl index 731452e..0bb1153 100644 --- a/convert.xsl +++ b/convert.xsl @@ -101,15 +101,4 @@ <xsl:apply-templates select="//div[@class='markdown']/*" mode="conv"/> </chapter> </xsl:template> - - <xsl:template match="*" mode="copy"> - <xsl:element name="{local-name()}"> - <xsl:apply-templates mode="copy" select="@*|node()" /> - </xsl:element> - </xsl:template> - <xsl:template match="@*" mode="copy"> - <xsl:attribute name="{local-name()}"> - <xsl:value-of select="." /> - </xsl:attribute> - </xsl:template> </xsl:stylesheet> |