blob: fd762531ab995e8ccf4db20ad2c7f6d7b68f730a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<xsl:template match="mxCell[contains(@id, '#identifier')]" />
<xsl:template match="mxCell[@as = 'defaultParent']" />
<xsl:template match="mxPoint[@as = 'origin']" />
<xsl:template match="Array[@as != 'points' and @as != 'context']" />
<xsl:template match="ScilabDouble" />
<xsl:template match="ScilabInteger" />
<xsl:template match="ScilabString" />
<xsl:template match="ExplicitInputPort" />
<xsl:template match="ExplicitOutputPort" />
<xsl:template match="ImplicitInputPort" />
<xsl:template match="ImplicitOutputPort" />
<xsl:template match="CommandPort" />
<xsl:template match="ControlPort" />
</xsl:stylesheet>
|