diff options
Diffstat (limited to 'LUFA/StudioIntegration/lufa_indent_transform.xslt')
-rw-r--r-- | LUFA/StudioIntegration/lufa_indent_transform.xslt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/LUFA/StudioIntegration/lufa_indent_transform.xslt b/LUFA/StudioIntegration/lufa_indent_transform.xslt new file mode 100644 index 000000000..ccd738905 --- /dev/null +++ b/LUFA/StudioIntegration/lufa_indent_transform.xslt @@ -0,0 +1,22 @@ +<!-- + LUFA Library + Copyright (C) Dean Camera, 2012. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +--> + +<!-- Atmel Studio framework Module XML transform file --> + +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/> + + <!-- Remove all white-space on all elements so that they can be indented --> + <xsl:strip-space elements="*"/> + + <!-- Match the root node and copy, so that the output will be a correctly + indented version of the input document --> + <xsl:template match="/"> + <xsl:copy-of select="."/> + </xsl:template> +</xsl:stylesheet>
\ No newline at end of file |