lawless-legends/Platform/Apple/virtual/tools/getBlockTypes.xslt

13 lines
420 B
HTML
Raw Normal View History

2019-11-14 14:42:08 +00:00
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="outlaw" xpath-default-namespace="outlaw">
<xsl:template match="block">
<xsl:message><xsl:value-of select="@type"/></xsl:message>
<xsl:apply-templates select="@*|node()"/>
</xsl:template>
<xsl:template match="@*|node()">
<xsl:apply-templates select="@*|node()"/>
</xsl:template>
</xsl:stylesheet>