Move out Studio Integration XML transform files to their own directory for neatness.

This commit is contained in:
Dean Camera 2013-01-03 16:16:45 +00:00
parent 5386a5a7ff
commit 56f03a793c
5 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,23 @@
<!--
LUFA Library
Copyright (C) Dean Camera, 2013.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
-->
<!-- Atmel Studio framework Module XML transform file -->
<!-- Indents a given XML document to match the node hierarchy. -->
<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>