summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl')
-rw-r--r--Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl22
1 files changed, 22 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl
new file mode 100644
index 00000000000..b014c04a326
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/latex-web-companion/xmlstyle/isotab1to2-bis.xsl
@@ -0,0 +1,22 @@
+<?xml version='1.0' encoding="ISO-8859-1"?>
+<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+<xsl:output method="xml" encoding="ISO-8859-1"/>
+
+<xsl:template match="countries">
+ <xsl:copy>
+ <xsl:apply-templates/>
+ </xsl:copy><xsl:text>&#xa;</xsl:text>
+</xsl:template>
+
+<xsl:template match="country">
+ <xsl:copy>
+ <xsl:for-each select="*">
+ <xsl:attribute name="{name(.)}">
+ <xsl:value-of select="."/>
+ </xsl:attribute>
+ </xsl:for-each>
+ </xsl:copy>
+</xsl:template>
+
+</xsl:stylesheet>