summaryrefslogtreecommitdiffstats
path: root/isaviz-preprocess.xsl
blob: b85a18011fdd572e099556516880761ba588265e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--
  shamelessly copied from
  http://en.wikipedia.org/wiki/Identity_transform#Using_XSLT
  -->
<xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:owl="http://www.w3.org/2002/07/owl#"
                xmlns:ex="http://purl.org/net/ns/ex#">
  <xsl:template match="@*|node()">
    <xsl:copy>
      <xsl:apply-templates select="@*|node()"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="owl:Ontology|ex:Example|comment()"/>
</xsl:stylesheet>