diff options
Diffstat (limited to 'files/.vim/templates/template.xsl')
| -rwxr-xr-x | files/.vim/templates/template.xsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/files/.vim/templates/template.xsl b/files/.vim/templates/template.xsl new file mode 100755 index 0000000..c0e54b8 --- /dev/null +++ b/files/.vim/templates/template.xsl @@ -0,0 +1,13 @@ +<?xml version="1.0"?>
+<xsl:stylesheet version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+
+ <xsl:output method="xml" indent="yes"/>
+ <xsl:strip-space elements="*"/>
+
+ <xsl:template match="node()|@*">
+ <xsl:copy>
+ <xsl:apply-templates select="node()|@*"/>
+ </xsl:copy>
+ </xsl:template>
+</xsl:stylesheet>
|
