-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest.xsl
More file actions
21 lines (17 loc) · 702 Bytes
/
test.xsl
File metadata and controls
21 lines (17 loc) · 702 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:dbk="http://docbook.org/ns/docbook"
xmlns:ens="http://www.le-tex.de/namespace/emphasis-normalize-space"
exclude-result-prefixes="xs ens" version="2.0">
<xsl:import href="../lib/docbook-same-scope.xsl"/>
<xsl:import href="../lib/emphasis-normalize-space.xsl"/>
<xsl:template match="/" mode="#default">
<xsl:apply-templates mode="ens:default"/>
</xsl:template>
<xsl:template match="/processing-instruction()" mode="ens:default">
<xsl:next-match/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>