-
Notifications
You must be signed in to change notification settings - Fork 1
/
qt2html.xsl
35 lines (29 loc) · 890 Bytes
/
qt2html.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
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<span>
<xsl:comment>This file is automatically generated. Do not edit.</xsl:comment>
<xsl:apply-templates/>
</span>
</xsl:template>
<xsl:template match="quotation">
<xsl:element name="p">
<xsl:for-each select="text()">
<xsl:copy/>
</xsl:for-each>
</xsl:element>
<xsl:apply-templates select = "author | source"/>
</xsl:template>
<xsl:template match="author">
<xsl:element name="p">
<xsl:attribute name="class">author</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
<xsl:template match="source">
<xsl:element name="p">
<xsl:attribute name="class">source</xsl:attribute>
<xsl:apply-templates />
</xsl:element>
</xsl:template>
</xsl:stylesheet>