]> matita.cs.unibo.it Git - helm.git/blob - helm/searchEngine/html/includes.xsl
ocaml 3.09 transition
[helm.git] / helm / searchEngine / html / includes.xsl
1 <?xml version="1.0"?>
2 <xsl:stylesheet
3   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4   xmlns:helm="http://www.cs.unibo.it/helm"
5   version="1.0"
6 >
7   <xsl:template match="/|@*|node()">
8     <xsl:copy>
9       <xsl:apply-templates select="@*|node()" />
10     </xsl:copy>
11   </xsl:template>
12   <xsl:template match="helm:include">
13     <xsl:apply-templates select="document(@href)/*[1]/*" />
14   </xsl:template>
15 </xsl:stylesheet>