-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (34 loc) · 1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Like!</title>
<link rel="stylesheet" href="./lib/playground.css"></link>
<link rel="stylesheet" href="./node_modules/codemirror/lib/codemirror.css"></link>
<link rel="stylesheet" href="./node_modules/codemirror/lib/codemirror.css"></link>
<!--<link rel="stylesheet" href="../common.css"></link>-->
<script src="./node_modules/codemirror/lib/codemirror.js"></script>
<script src="./node_modules/jquery/dist/jquery.min.js"></script>
<script src="./dist/like-v1.0.0.js"></script>
<script src="./lib/playground.js"></script>
<script src="./lib/lang.js"></script>
<script src="./lib/helpers.js"></script>
</head>
<body>
<div style= "font-size: 20px; text-align: center; margin: 30px; font-family: monospace;">
https://github.com/kalhauge/like
</div>
<script>
insertPlayground(
JS,
'var match = like.compile(a => ( _ >= 1));\nmatch(1);'
);
</script>
<div style="width: 600px; font-size: 26px; font-family: cursive; margin: 100px 100px 100px 130px;">
Your scientists were so preoccupied with whether or not they could, they didn’t stop to think if they should.
<p style="text-align: right;">- Dr. Ian Malcolm</p>
</div>
<script>insertPlayground(LIKE, 'a => ( _ >= 1)');</script>
</body>
</html>