c3d2-web/xsl/datenspuren/frab2xml.xsl

21 lines
562 B
XML

<?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>