Elemento <xsl:comment>
Genera un comentario en el resultado.
<xsl:comment>
</xsl:comment>
Información del elemento
Número de apariciones |
Ilimitado |
Elementos primarios |
xsl:copy, xsl:element, xsl:fallback, xsl:for-each, xsl:if, xsl:message, xsl:otherwise, xsl:param, xsl:template, xsl:variable, xsl:when, xsl:with-param, elementos resultantes |
Elementos secundarios |
xsl:apply-imports, xsl:apply-templates, xsl:call-template, xsl:choose, xsl:copy, xsl:copy-of, xsl:fallback, xsl:for-each, xsl:if, xsl:message, xsl:number, xsl:text, xsl:value-of, xsl:variable |
Comentarios
El texto generado por el elemento secundario de <xsl:comment> aparece entre los caracteres de inicio (<!--) y los caracteres de cierre (-->).
Ejemplo
En el siguiente ejemplo, la hoja de estilos news.xsl transforma el documento news.xml e inserta un comentario en el resultado XSLT.
Archivo XML (news.xml)
<?xml version ="1.0"?>
<?xml-stylesheet type="text/xsl" href="news.xsl"?>
<news>
<story1>Here is the top news story.</story1>
<story2> Here is the next news story.</story2>
</news>
Archivo XSLT (news.xsl)
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:template match="/">
<HTML>
<BODY>
<xsl:comment>insert top news story</xsl:comment>
<P>
<xsl:value-of select="//story1"/>
</P>
</BODY>
</HTML>
</xsl:template>
</xsl:stylesheet>
Resultados
Este es el resultado con formato:
Here is the top news story.
Este es el resultado del procesador:
<HTML>
<BODY><!--insert top news story-->
<P>Here is the top news story.</P>
</BODY>
</HTML>