-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 1.34 KB
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1" name="viewport">
<title>DeityJS</title>
<link href="https://fonts.googleapis.com/css?family=Raleway:100,300,400" rel="stylesheet">
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<main class="main">
<div class="main-inner">
<h1>DeityJS</h1>
<p>A extensible tool for generative testing, powered by ES2015 generators.</p>
<ul class="no-bullet">
<li><a href="http://macr.ae/article/introducing-deity.html">Introduction</a></li>
<li><a href="https://github.com/DeityJS/deity">GitHub</a></li>
<li><a href="https://github.com/DeityJS/deity#deity-">Docs</a></li>
<li><a href="https://github.com/DeityJS/deity/issues">Issues</a></li>
</ul>
</div>
</main>
<div class="sidebar">
<h2>Try it out!</h2>
<form id="deity-form">
<input type="text" name="generator-string" placeholder="number:1-5">
<button>Generate</button>
</form>
<ul id="output" class="no-bullet"></ul>
<p>Try one of the following:</p>
<ul>
<li><code>string</code></li>
<li><code>number:10-20</code></li>
<li><code>boolean:0.66</code></li>
<li><code>A-M</code></li>
<li><code>array:(A-M):(boolean):(3.5-13.5)</code></li>
</ul>
</div>
<script src="dist/bundle.min.js"></script>
</body>
</html>