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

  <!-- Remove unwanted container element within structure of multiple
       index additions for multiple index files. -->

  <xsl:template match="insert">
      <xsl:apply-templates select="node()"/>
  </xsl:template>

  <xsl:template match="node()|@*">
      <xsl:copy>
         <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
  </xsl:template>

</xsl:stylesheet>