summaryrefslogtreecommitdiffstats
path: root/modules/portuguese/text.xsl
blob: 6df84cd38a72c49187c3de2eb50ad94bbea1faba (plain) (blame)
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:output method="text"/>
 
<xsl:template match="/"><xsl:apply-templates/></xsl:template>
<xsl:template match="page"><xsl:apply-templates/></xsl:template>
<xsl:template match="page_footer"><xsl:apply-templates/></xsl:template>
<xsl:template match="maintext"><xsl:apply-templates/></xsl:template>

<xsl:template match="chapter">
\c<xsl:value-of select="."/></xsl:template>

<xsl:template match="verse_no">
\v<xsl:value-of select="."/></xsl:template>



<xsl:template match="intro_para"></xsl:template>

<xsl:template match="bookname">
\mt<xsl:value-of select="."/>
\p
</xsl:template>

<xsl:template match="section_title">
\p
\s1<xsl:value-of select="."/>
\p
</xsl:template>

<xsl:template match="Lords_Name">\nd <xsl:value-of select="."/> \nd*</xsl:template>

<xsl:template match="ref_text"/>
<xsl:template match="ref_key"/>
<xsl:template match="ref_no"/>
<xsl:template match="refverse_no"/>
<xsl:template match="refchapter_no"/>
<xsl:template match="font"/>
<xsl:template match="page_footer"/>
<xsl:template match="title"/>




<xsl:strip-space elements="*"/>


</xsl:stylesheet>