aboutsummaryrefslogtreecommitdiff
path: root/datasource.xsl
blob: 698ca67fb7aca0f91bb454fc9d8af8df5182f74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:xalan="http://xml.apache.org/xalan"
	xmlns:InputXSLT="function.inputxslt.application"
	exclude-result-prefixes="xalan InputXSLT"
>

<xsl:output
	method="xml"
	omit-xml-declaration="no"
	encoding="UTF-8"
	indent="yes"
/>

<xsl:include href="utility/reader.xsl"/>
<xsl:include href="datasource/entry.xsl"/>

<xsl:template match="data/source">
	<datasource>
		<xsl:apply-templates select="@*|node()"/>
	</datasource>
</xsl:template>

<xsl:template match="source/pages">
	<pages>
		<xsl:apply-templates select="./*"/>
	</pages>
</xsl:template>

<xsl:template match="file[./extension = '.md']">
	<xsl:call-template name="entry">
		<xsl:with-param name="file" select="."/>
	</xsl:call-template>
</xsl:template>

</xsl:stylesheet>