]> granicus.if.org Git - docbook-dsssl/commitdiff
Added template for matching Span; noticed problems with span
authorMichael Smith <xmldoc@users.sourceforge.net>
Wed, 5 Apr 2006 09:03:34 +0000 (09:03 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Wed, 5 Apr 2006 09:03:34 +0000 (09:03 +0000)
instances appearing as-is output, possibly as a side-effect of
failed Olink processing -- so we need to catch it before it
sneaks through.

xsl/manpages/inline.xsl

index 078a07392923d5f9b0c5beb8ee82e9bf1759e465..75edf9877b3de6adbfecef7102dfaad5353c9ac9 100644 (file)
   </xsl:choose>
 </xsl:template>
 
+<!-- * span in seems to sneak through into output sometimes, possibly due -->
+<!-- * to failed Olink processing; so we need to catch it -->
+<xsl:template match="span">
+  <xsl:apply-templates/>
+</xsl:template>
+
 </xsl:stylesheet>