Hi when i use[tt]xsl:value-of[/tt] it displays nothing.
Code:
<?xml version="1.0" encoding="us-ascii"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="[URL unfurl="true"]http://www.w3.org/1999/XSL/Transform">[/URL]
<xsl:output
indent="no" />
<xsl:template match="/">
<html>
<body style="font-family: monospace;">
<h1 style="color:red;">NOAA-NWS-ALERTS</h1>
<br/>
<hr/>
<br/>
<p>
<xsl:text>Sent:</xsl:text>
<xsl:value-of select="note"/>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>