Skip to content

Instantly share code, notes, and snippets.

@bricksdont
Created June 28, 2019 08:28
Show Gist options
  • Save bricksdont/907ddbfaf9b4b2155bff247dd95cc6bc to your computer and use it in GitHub Desktop.
Save bricksdont/907ddbfaf9b4b2155bff247dd95cc6bc to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:text="www.doc.com">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="//text:span[@text:style-name='Kursiv_5f_KeiinRecht']">
<xsl:apply-templates select="node()" />
</xsl:template>
</xsl:stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment