<?xml version="1.0" encoding="utf-8"?>
<!--
  reindent-html.xsl

  A simple wrapper for reindent.xsl that causes it to output HTML,
  rather than XML.  Good for converting XHTML to pretty-printed HTML.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <!--We assume that reindent.xsl is in the same folder as this stylesheet-->
  <xsl:import href="reindent.xsl"/>

  <!--Override the output method-->
  <xsl:output method="html" version="4.0"/>

</xsl:stylesheet>
