3      Copyright (C) Dean Camera, 2013.
 
   5   dean [at] fourwalledcubicle [dot] com
 
   9 <!-- Atmel Studio framework XML transform file -->
 
  11 <!-- Indents a given XML document to match the node hierarchy. -->
 
  12 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
  13         <xsl:output method="xml" omit-xml-declaration="yes" indent="yes"/>
 
  15         <!-- Remove all white-space on all elements so that they can be indented -->
 
  16         <xsl:strip-space elements="*"/>
 
  18         <!-- Match the root node and copy, so that the output will be a correctly
 
  19              indented version of the input document -->
 
  20         <xsl:template match="/">
 
  21                 <xsl:copy-of select="."/>