pxt-calliope/docs/static/extract-ids.xslt
Matthias L. Jugel b028b1df5b Auto-push
2017-08-19 17:16:35 +02:00

10 lines
301 B
HTML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="node()">
<xsl:apply-templates select="@*|node()"/>
</xsl:template>
<xsl:template match="@id">
<xsl:message><xsl:value-of select="." /></xsl:message>
</xsl:template>
</xsl:stylesheet>