-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgrammar.html
More file actions
50 lines (40 loc) · 1.13 KB
/
grammar.html
File metadata and controls
50 lines (40 loc) · 1.13 KB
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
---
title: Grammar
---
<!DOCTYPE HTML>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<head>
<title>ChaiScript - Grammar Railroad Diagram</title>
{% include common.html %}
<style>
.grammar-iframe {
width: 100%;
min-height: 800px;
border: 1px solid #ddd;
border-radius: 4px;
background: #fff;
}
.grammar-links {
margin-top: 10px;
font-size: 0.9rem;
}
</style>
</head>
<body>
{% include header.html %}
<div class="well well-sm">
<h3>Grammar Railroad Diagram</h3>
<p>Navigable railroad diagram of ChaiScript's syntax, generated from the
<a href="https://github.com/ChaiScript/ChaiScript/blob/develop/grammar/chaiscript.ebnf">EBNF grammar</a>
using <a href="https://github.com/GuntherRademacher/rr">RR</a>.</p>
</div>
<div class="body-with-margin">
<iframe class="grammar-iframe" src="/grammar/railroad.xhtml" title="ChaiScript grammar railroad diagram"></iframe>
<div class="grammar-links">
<p>
<a href="/grammar/railroad.xhtml">Open full-page diagram</a> ·
<a href="/grammar/chaiscript.ebnf">Download EBNF source</a>
</p>
</div>
</div>
</body>