-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (62 loc) · 1.9 KB
/
index.html
File metadata and controls
76 lines (62 loc) · 1.9 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<style>
body {
font-family: Tahoma, sans-serif;
color: #555;
}
#sheet {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
h1 {
font-size: 64pt;
padding-top: 20px;
padding-bottom: 10px;
padding-left: 10px;
border-bottom: 2px #555 solid;
color: #555;
}
h2 {
font-size: font-size: 14pt;
margin-top: 40px;
}
ul li {
line-height: 2.0;
}
img {
width: 100%;
}
</style>
<body>
<div id="sheet">
<h1>nlScript</h1>
<p>nlScript is a library for creating natural language scripting interfaces.</p>
<h2>nlScript is for you, if you</h2>
<ul>
<li>want to provide an application-specific programming language for your software</li>
<li>target end-users, not programmers</li>
<li>want a natural English syntax instead of a traditional programming language</li>
</ul>
<img src="images/nlScript-principle.png"></img>
<h2>nlScript provides everything needed:</h2>
<ul>
<li>An intuitive way to specify the grammar.</li>
<li>A readily-usable editor you can display from within your application, for user input</li>
<li>Auto-completion, automatically adapted to the defined grammar</li>
<li>A parsing engine</li>
<li>nlScript is available for Java, Python and JavaScript</li>
</ul>
<h2>Where to start</h2>
<ul>
<li><a target="_blank" href="https://nlscript.github.io/nlScript-java/">A detailed tutorial</li>
<li><a target="_blank" href="https://nlscript.github.io/nlScript-tutorial-js/applications.html">Some interactive examples, with code</li>
<li><a target="_blank" href="https://github.com/nlScript/nlScript-java">nlScript for Java</li>
<li><a target="_blank" href="https://github.com/nlScript/nlScript-python">nlScript for Python</li>
<li><a target="_blank" href="https://github.com/nlScript/nlScript-js">nlScript for JavaScript</li>
<li><a target="_blank" href="https://github.com/nlScript/nlScript-llm">Training an LLM for an nlScript language</li>
</ul>
</div>
</body>
</html>