+
+ <!--
+ Earlier versions of html2wl introduced a BUG, that 'causes "out-of-flow-text" tag to appear.
+ Instead of marking it as "unknown", just pass thru it
+ -->
+ <xsl:template match="out-of-flow-text">
+ <xsl:param name="mixed" />
+ <xsl:apply-templates select="child::node()">
+ <xsl:with-param name="mixed" select="$mixed" />
+ </xsl:apply-templates>
+ </xsl:template>