~ricardo-cropalato/ubuntu-desktop-course/ubuntu-desktop-course-pt-br-ricardo-cropalato

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 xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

    <xsl:output method="xml" indent="yes" encoding="utf-8"
   doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
   doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />

    <xsl:template match="instructorsect">
	<xsl:apply-templates/> 
    </xsl:template>

    <xsl:template match="instructornote">
	<note>
	<xsl:apply-templates/> 
	</note>
    </xsl:template>

    <xsl:template match="questions">
        <xsl:apply-templates />
    </xsl:template>

    <xsl:template match="answer">
	<para>
	<xsl:apply-templates/> 
	</para>
    </xsl:template>

    <xsl:template match="node()|@*">
        <xsl:copy>
           <xsl:apply-templates select="@*|node()" />
        </xsl:copy>
    </xsl:template>

</xsl:stylesheet>