<?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" indent="yes"/> <!-- Start --> <xsl:template match="/"> <xsl:text> </xsl:text> <xsl:processing-instruction name="DOCTYPE">COMPLETION SYSTEM "command_defines.dtd"</xsl:processing-instruction> <root version='.02'> <xsl:apply-templates select="*"/> </root> </xsl:template> <xsl:template match="action"> <actiontemplate tag="{@tag}"> <action><xsl:text> </xsl:text></action> </actiontemplate> </xsl:template> <xsl:template match="*|@*"> <xsl:apply-templates select="*"/> </xsl:template> <xsl:template match="text()"> <!-- Do nothing --> </xsl:template> </xsl:stylesheet>