13 lines
365 B
XML
13 lines
365 B
XML
|
|
<?xml version="1.0"?>
|
||
|
|
<xsl:stylesheet
|
||
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||
|
|
xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0" version="1.0">
|
||
|
|
|
||
|
|
<xsl:output indent="yes" method="xml" encoding="UTF-8" omit-xml-declaration="yes" />
|
||
|
|
|
||
|
|
<xsl:template match="/">
|
||
|
|
<xsl:value-of select="//yweather:forecast/@low" />
|
||
|
|
</xsl:template>
|
||
|
|
|
||
|
|
</xsl:stylesheet>
|