|
XSLT
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/> <xsl:template match="/aaa"> <xxx> <xsl:apply-templates select="*"/> </xxx> </xsl:template> <xsl:template match="*"> <yyy> <xsl:comment select="name()"/> </yyy> </xsl:template> </xsl:stylesheet> |
|
|
XML
<aaa> <bbb/> <ccc/> </aaa> |
Output
<xxx> <yyy><!--bbb--></yyy> <yyy><!--ccc--></yyy> </xxx> |
| Previous chapter: | Date and Time |
| Next chapter: | Built in Types |
| Previous page: | Comments based on source document |
| Next page: | Matching comments in the source document |