-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathletters.xsl
126 lines (110 loc) · 4.36 KB
/
letters.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:tei="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output encoding="UTF-8" method="text"></xsl:output>
<!-- select first level div: -->
<xsl:template match="/">
<xsl:apply-templates select="//tei:body/tei:div"/>
</xsl:template>
<xsl:strip-space elements="*"/>
<xsl:template match="tei:body/tei:div">
<!-- Name the file-->
<xsl:variable name="sect_id" select="@xml:id"/>
<xsl:result-document method="text" encoding="utf-8"
href="../../_parts/{$sect_id}.md" omit-xml-declaration="yes">
<!-- yaml header -->
<xsl:text>---
letter: </xsl:text>
<xsl:value-of select="tei:head/@n"/>
<xsl:text>
</xsl:text>
<xsl:text>section: </xsl:text>
<xsl:value-of select="tei:head/@type"/>
<xsl:text>
</xsl:text>
<xsl:text>---</xsl:text>
<xsl:apply-templates/>
</xsl:result-document>
</xsl:template>
<!-- opener -->
<xsl:template match="tei:opener">
<xsl:text>

</xsl:text>
<xsl:apply-templates select="tei:dateline/tei:placeName"/>
<xsl:text>, </xsl:text>
<xsl:apply-templates select="tei:dateline/tei:date"/>
<xsl:text>
</xsl:text>
</xsl:template>
<!-- markdown paragraphs -->
<xsl:template match="tei:p">
<xsl:text>
</xsl:text>
<xsl:apply-templates/>
<xsl:text>
</xsl:text>
</xsl:template>
<!-- annotation tooltips -->
<xsl:template match="*">
<!-- for each current node -->
<xsl:for-each select=".">
<xsl:choose>
<xsl:when test="contains(@type, 'annotate')">
<xsl:apply-templates />
<xsl:text>{% include annotate.md id="</xsl:text>
<xsl:value-of select="@xml:id"/>
<xsl:text>" no="</xsl:text>
<xsl:value-of select="@n"/>
<xsl:text>" %}</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<!-- text emphasis -->
<xsl:template match="tei:hi">
<xsl:for-each select=".">
<xsl:choose>
<xsl:when test="contains(@rend, 'superscript')">
<xsl:text><sup></xsl:text>
<xsl:apply-templates />
<xsl:text></sup></xsl:text>
</xsl:when>
<xsl:when test="contains(@rend, 'strike')">
<xsl:text><strike></xsl:text>
<xsl:apply-templates />
<xsl:text></strike></xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<!-- don't hyperlink second occurences of persNames -->
<xsl:template match="tei:persName[preceding::tei:persName[@key = current()/@key]]">
<xsl:apply-templates />
</xsl:template>
<!-- hyperlink first occurences of persNames, except for marie mancini -->
<xsl:template match="tei:persName">
<xsl:for-each select=".">
<xsl:choose>
<xsl:when test="@key != 'mancini-marie'">
<xsl:text>[</xsl:text>
<xsl:apply-templates />
<xsl:text>](/people#</xsl:text>
<xsl:value-of select="@key"/>
<xsl:text>])</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</xsl:template>
<!-- closer -->
<xsl:template match="tei:closer">
<xsl:text>
{:.text-right}
</xsl:text>
<xsl:apply-templates select="tei:signed/tei:persName" />
</xsl:template>
<!-- don't output 'note' elements -->
<xsl:template match="tei:note"/>
</xsl:stylesheet>