c3d2-web/xsl/datenspuren/frab2xml.xsl

21 lines
562 B
XML
Raw Normal View History

2013-08-26 01:15:54 +02:00
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml"
version="1.0"
encoding="utf-8"
indent="yes"/>
<xsl:template match="/html">
<xsl:apply-templates select="//div[@id='main-content']"/>
</xsl:template>
<xsl:template match="div[@id='main-content']">
<day title="{normalize-space(h2)}">
<xsl:copy-of select=".//table[@class='rooms-table']"/>
</day>
</xsl:template>
</xsl:stylesheet>