-
Notifications
You must be signed in to change notification settings - Fork 16
/
test-exolve-div.html
67 lines (55 loc) · 1.17 KB
/
test-exolve-div.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="exolve-m.css?v1.58"/>
<script src="exolve-m.js?v1.58"></script>
<title>Test-Exolve-Div</title>
</head>
<body style="background-color:lightblue">
<table border=1>
<tr>
<th>Heading 1</th>
<th>Puzzle heading</th>
</tr>
<tr>
<td>First column</td>
<td id="exolve"></td>
</tr>
</table>
<p>Some paragraph</p>
Some text with a <span>span</span>.
<hr>
<p>
Another paragraph.
</p>
Some more text.
<script>
createExolve(`
======REPLACE WITH YOUR PUZZLE BELOW======
exolve-begin
exolve-id: test-exolve-div
exolve-title: Test-Exolve-Div
exolve-setter: Gussalufz
exolve-copyright: 2020 Viresh Ratnakar
exolve-width: 4
exolve-height: 3
exolve-grid:
C R E W
A|N|L|E
R A I D
exolve-across:
1 crew (4) [CREW] Anno for 1a
5 raid (4)
exolve-down
1 car (3) Anno for 1d
2 rna (1.1.1)
3 <span style="background-color:lightgreen">eli</span> (3) [E-L-I] Deliberate dashes.
4 wed (3)
exolve-end
======REPLACE WITH YOUR PUZZLE ABOVE======
`);
</script>
</body>
</html>