-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathtest-oblongs.html
More file actions
75 lines (66 loc) · 1.34 KB
/
test-oblongs.html
File metadata and controls
75 lines (66 loc) · 1.34 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 lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, interactive-widget=resizes-content"/>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.69"/>
<script src="exolve-m.js?v1.69"></script>
<title>Test-Oblongs</title>
</head>
<body>
First puzzle:
<div id="exolve"></div>
<script>
createExolve(`
======REPLACE WITH YOUR PUZZLE BELOW======
exolve-begin
exolve-id: test-oblong-hor
exolve-title: Test-Horizontally-Oblong
exolve-width: 5
exolve-height: 6
exolve-cell-size: 43 31
exolve-grid:
00000
0.0.0
0@0000
0.0.0
00000
0.0.0
exolve-across:
1 Test (1,1-3)
exolve-down:
1 Another test (2,1-3)
exolve-option: ignore-unclued
exolve-end
======REPLACE WITH YOUR PUZZLE ABOVE======
`);
</script>
Second puzzle:
<div id="exolve"></div>
<script>
createExolve(`
======REPLACE WITH YOUR PUZZLE BELOW======
exolve-begin
exolve-id: test-oblong-ver
exolve-title: Test-Vertically-Oblong
exolve-width: 5
exolve-height: 6
exolve-cell-size: 31 43
exolve-grid:
00000
0.0.0
00000
0.0.0
00000
0@.0.0
exolve-across:
1 Test (1,1-3)
exolve-down:
1 Another test (2,1-3)
exolve-option: ignore-unclued
exolve-end
======REPLACE WITH YOUR PUZZLE ABOVE======
`);
</script>
</body>
</html>