92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
<xsl:stylesheet version="1.0" |
|
3 |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
|
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 |
||
86.2.7
by Torsten Spindler
Updte to styles |
9 |
<xsl:template match="questions"> |
10 |
<xsl:apply-templates /> |
|
11 |
</xsl:template>
|
|
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
12 |
|
13 |
<xsl:template match="node()|@*"> |
|
14 |
<xsl:copy> |
|
15 |
<xsl:apply-templates select="@*|node()" /> |
|
16 |
</xsl:copy>
|
|
17 |
</xsl:template>
|
|
18 |
||
19 |
<!-- Remove instructor notes -->
|
|
20 |
||
21 |
<xsl:template match="instructornote" /> |
|
22 |
||
112.1.1
by Torsten Spindler
Transformed Introduction to be like a real chapter with sections, added instructorsect tag |
23 |
<!-- Remove instructor sections -->
|
24 |
<xsl:template match="instructorsect" /> |
|
25 |
||
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
26 |
<!-- Remove answers -->
|
27 |
||
28 |
<xsl:template match="answer" /> |
|
29 |
||
86.2.5
by Torsten Spindler
Separating answers for student guide |
30 |
|
92
by Torsten Spindler
Fixes and new stylesheet for instructor notes and answers, updated makefile |
31 |
</xsl:stylesheet>
|
32 |