2013-01-03 11:40:35 +01:00
|
|
|
<!--
|
|
|
|
LUFA Library
|
2013-01-03 12:37:33 +01:00
|
|
|
Copyright (C) Dean Camera, 2013.
|
2013-01-03 11:40:35 +01:00
|
|
|
|
|
|
|
dean [at] fourwalledcubicle [dot] com
|
|
|
|
www.lufa-lib.org
|
|
|
|
-->
|
|
|
|
|
2013-01-19 11:04:10 +01:00
|
|
|
<!-- Atmel Studio framework XML transform file -->
|
2013-01-03 11:40:35 +01:00
|
|
|
|
2013-01-03 17:08:44 +01:00
|
|
|
<!-- Indents a given XML document to match the node hierarchy. -->
|
2013-01-03 11:40:35 +01:00
|
|
|
<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>
|
2013-01-19 11:04:10 +01:00
|
|
|
</xsl:stylesheet>
|