-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcab2txt.xsl
51 lines (34 loc) · 1.49 KB
/
cab2txt.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
<?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:t="http://www.tei-c.org/ns/1.0"
exclude-result-prefixes="xs"
version="2.0">
<xsl:output method="text" encoding="UTF-8"/>
<xsl:template match="/">
<xsl:apply-templates />
</xsl:template>
<xsl:template match="//t:teiHeader">
</xsl:template>
<xsl:template match="//t:back">
</xsl:template>
<xsl:template match="//t:dateline">
</xsl:template>
<xsl:template match="//t:opener">
</xsl:template>
<xsl:template match="//t:closer">
</xsl:template>
<xsl:template match="//div[@type='appendix']">
</xsl:template>
<xsl:template match="//t:text/t:body/t:div[@type='transcription']">
<xsl:for-each select="//(t:p|t:head)[not(ancestor::t:div[@type='appendix'])]//t:w">
<xsl:value-of select="t:moot/@lemma"/><xsl:text> </xsl:text>
</xsl:for-each>
</xsl:template>
<!-- Zur Ausgabe von listen von Wörtern und ihren Lemmas in Gegenüberstellung: -->
<!--<xsl:template match="//t:text/t:body/t:div[@type='transcription']">
<xsl:for-each select="t:p//t:w">
<xsl:value-of select="."/><xsl:text> : </xsl:text><xsl:value-of select="t:moot/@lemma"/><xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>-->
</xsl:stylesheet>