113
by Torsten Spindler
Adding missing questions.xsl |
1 |
<?xml version='1.0'?>
|
2 |
||
3 |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
|
4 |
||
5 |
<xsl:output method="xml" indent="yes" encoding="utf-8" |
|
6 |
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" |
|
7 |
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" /> |
|
8 |
||
9 |
<xsl:template match="instructornote"> |
|
10 |
</xsl:template>
|
|
11 |
||
12 |
<xsl:template match="answer"> |
|
13 |
<para>
|
|
14 |
<xsl:apply-templates/> |
|
15 |
</para>
|
|
16 |
</xsl:template>
|
|
17 |
||
18 |
<xsl:template match="sect1"> |
|
19 |
<chapter>
|
|
20 |
<xsl:apply-templates/> |
|
21 |
</chapter>
|
|
22 |
</xsl:template>
|
|
23 |
||
24 |
<xsl:template match="node()|@*"> |
|
25 |
<xsl:copy> |
|
26 |
<xsl:apply-templates select="@*|node()" /> |
|
27 |
</xsl:copy>
|
|
28 |
</xsl:template>
|
|
29 |
||
30 |
</xsl:stylesheet>
|