<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>

  <!-- Force format the result tree fragment to short-tagging
  style "<foo />" instead of the default format "<foo></foo>".
  -->
  <xsl:template match='meta|link|img|hr|br|input|a'>
    <xsl:copy><xsl:apply-templates select="@*" /></xsl:copy>
  </xsl:template>

</xsl:stylesheet>

