-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsyntax_template.xhtml
66 lines (55 loc) · 2.54 KB
/
syntax_template.xhtml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset='utf-8' />
<meta http-equiv="Content-Type" content="application/xhtml+xml" />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="stylesheets/stylesheet.css" media="screen" />
<link rel="stylesheet" type="text/css" href="stylesheets/print.css" media="print" />
<svg xmlns="http://www.w3.org/2000/svg">
<defs>
<style type="text/css">
@namespace "http://www.w3.org/2000/svg";
.line {fill: none; stroke: #332900;}
.bold-line {stroke: #4D3D00; shape-rendering: crispEdges; stroke-width: 2; }
.thin-line {stroke: #4D3D00; shape-rendering: crispEdges}
.filled {fill: #332900; stroke: none;}
text {font-family: Verdana, Sans-serif; font-size: 12px; fill: #4D3D00; }
text.terminal {font-family: Verdana, Sans-serif; font-size: 12px; fill: #4D3D00; font-weight: bold; }
rect, circle, polygon {fill: #332900; stroke: #332900;}
rect.terminal {fill: #d0e0e8; stroke: #332900;}
rect.nonterminal {fill: #e0e9f0; stroke: #332900;}
rect.text {fill: none; stroke: none;}
polygon.regexp {fill: #dfe8f4; stroke: #332900;}
</style>
</defs>
</svg>
<title>RDL Syntax</title>
</head>
<body>
<header>
<div class="inner">
<h1><a href="index.html">RDL</a></h1>
<h2>Resource Description Language</h2>
</div>
<div class="aside">
<a href="https://github.com/ardielle" class="button"><small>View project on </small>GitHub</a>
</div>
</header>
<div id="content-wrapper">
<div class="inner clearfix">
<section id="main-content">
<p><a href="index.html">(back to the overview)</a></p>
<h2><a name="Syntax">Syntax</a></h2>
<p>These diagrams were generated from <a href="rdl_ebnf.txt" target="rdl_ebnf.txt">this EBNF file</a>.</p>
{{BODY}}
</section>
</div>
</div>
<div align="center" style="font-size: 70%;">
<hr/>
The diagrams on this page were generated by Gunther Rademacher's <a href="http://www.bottlecaps.de/rr/ui" target="_blank">Railroad Diagram Generator</a>.
</div>
</body>
</html>