-
Notifications
You must be signed in to change notification settings - Fork 5
/
tei2html.xsl
executable file
·49 lines (42 loc) · 1.78 KB
/
tei2html.xsl
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="2.0"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:tei="http://www.tei-c.org/ns/1.0"
xmlns:hub="http://le-tex.de/namespace/hub"
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns:sxedit="http://www.le-tex.de/namespace/sxedit"
xmlns:ixsl="http://saxonica.com/ns/interactiveXSLT"
xmlns:prop="http://saxonica.com/ns/html-property"
xmlns:style="http://saxonica.com/ns/html-style-property"
extension-element-prefixes="ixsl"
exclude-result-prefixes="#all">
<xsl:template match="@* | *" mode="sxedit:render">
<xsl:copy>
<xsl:apply-templates select="@*, node()" mode="#current"/>
</xsl:copy>
</xsl:template>
<xsl:template match="tei:div[tei:head]" mode="sxedit:render">
<xsl:apply-templates mode="#current"/>
</xsl:template>
<xsl:template match="tei:div[not(tei:head)]" mode="sxedit:render">
<div xmlns="http://www.w3.org/1999/xhtml">
<xsl:apply-templates select="@*, node()" mode="#current"/>
</div>
</xsl:template>
<xsl:template match="tei:div/tei:head" mode="sxedit:render">
<xsl:element name="h{tei:heading-level(..)}" namespace="http://www.w3.org/1999/xhtml">
<xsl:apply-templates select="@*, ../@*, node()" mode="#current"/>
</xsl:element>
</xsl:template>
<xsl:function name="tei:heading-level" as="xs:integer">
<xsl:param name="div" as="element(tei:div)"/>
<xsl:sequence select="count($div/ancestor::tei:div) + 1"/>
</xsl:function>
<xsl:template match="tei:p" mode="sxedit:render">
<p xmlns="http://www.w3.org/1999/xhtml">
<xsl:apply-templates select="@*, node()" mode="#current"/>
</p>
</xsl:template>
</xsl:stylesheet>