123456789101112131415161718192021222324 |
- <?xml version="1.0" encoding="UTF-8"?>
- <xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:w="http://schemas.openxmlformats.org/wordprocessingml/2006/main">
-
- <xsl:template match='@*|node()'>
- <xsl:copy>
- <xsl:apply-templates select='@*|node()'/>
- </xsl:copy>
- </xsl:template>
-
- <xsl:template match="//w:tbl">
- <xsl:choose>
- <xsl:when test="w:tr/w:tc/w:p/w:r/w:t[contains(., $needle)]"/>
- <xsl:otherwise>
- <xsl:copy>
- <xsl:apply-templates select='@*|node()'/>
- </xsl:copy>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- </xsl:stylesheet>
|