-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathqt2text.xsl
41 lines (31 loc) · 896 Bytes
/
qt2text.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
<?xml version="1.0"?>
<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="author">
<xsl:text>	--</xsl:text>
<xsl:apply-templates />
</xsl:template>
<xsl:template match="source">
<xsl:text>	--</xsl:text>
<xsl:apply-templates />
</xsl:template>
<!-- Text highlighting -->
<xsl:template match="em">
<xsl:text> *</xsl:text>
<xsl:apply-templates />
<xsl:text>* </xsl:text>
</xsl:template>
<xsl:template match="cite | foreign">
<xsl:text> _</xsl:text>
<xsl:apply-templates />
<xsl:text>_ </xsl:text>
</xsl:template>
<xsl:template match="pre | code">
<xsl:text> </xsl:text>
<xsl:apply-templates />
<xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>