blob: 0b0827bb6e3abfbc00c3d4f2b652d786f60296fe (
plain)
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
36
37
38
39
40
41
42
43
44
|
<?xml version='1.0' encoding='utf-8'?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:doc="http://www.gnome.org/~shaunm/xsldoc"
xmlns="http://www.w3.org/1999/xhtml"
exclude-result-prefixes="doc"
version="1.0">
<doc:title>EBNF Elements</doc:title>
<!-- == Matched Templates == -->
<!-- = constraint = -->
<!-- = constraintdef = -->
<!-- = lhs = -->
<!-- = nonterminal = -->
<!-- = production = -->
<!-- = productionrecap = -->
<!-- = productionset = -->
<xsl:template match="productionset">
<div class="productionset">
<xsl:call-template name="db2html.anchor"/>
<xsl:apply-templates select="title"/>
<table class="productionset">
<xsl:apply-templates select="production | productionrecap"/>
</table>
</div>
</xsl:template>
<!-- = productionset/title = -->
<xsl:template match="productionset/title">
<xsl:call-template name="db2html.title.simple"/>
</xsl:template>
<!-- = rhs = -->
</xsl:stylesheet>
|