aboutsummaryrefslogtreecommitdiff
path: root/utility/xhtml.xsl
blob: c4501757e3383e0c50ad790be402e67974db58d2 (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
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

<xsl:template match="*" mode="xhtml">
	<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
		<xsl:copy-of select="@*"/>
		<xsl:apply-templates select="node()" mode="xhtml"/>
	</xsl:element>
</xsl:template>

<xsl:template match="span" mode="xhtml">
	<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
		<xsl:copy-of select="@*"/>
		<xsl:apply-templates select="node()" mode="xhtml"/>
		<xsl:if test="not(node())">
			<xsl:comment></xsl:comment>
		</xsl:if>
	</xsl:element>
</xsl:template>

<xsl:template match="comment() | processing-instruction()" mode="xhtml">
	<xsl:copy/>
</xsl:template>

<xsl:template match="a[@class = 'footnoteRef']" mode="xhtml">
	<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
		<xsl:copy-of select="@class"/>
		<xsl:copy-of select="@id"/>
		<xsl:attribute name="href">
			<xsl:value-of select="concat('/article/', ancestor::entry/@handle, '/', @href)"/>
		</xsl:attribute>
		<xsl:apply-templates select="node()" mode="xhtml"/>
	</xsl:element>
</xsl:template>

<xsl:template match="div[@class = 'footnotes']/ol/li/p/a[@class = 'more']" mode="xhtml">
	<xsl:element name="{local-name()}" namespace="http://www.w3.org/1999/xhtml">
		<xsl:copy-of select="@class"/>
		<xsl:attribute name="href">
			<xsl:value-of select="concat('/article/', ancestor::entry/@handle, '/', @href)"/>
		</xsl:attribute>
		<xsl:apply-templates select="node()" mode="xhtml"/>
	</xsl:element>
</xsl:template>

</xsl:stylesheet>