-
Notifications
You must be signed in to change notification settings - Fork 17
/
example_test.html
45 lines (42 loc) · 1.2 KB
/
example_test.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
<html>
<head></head>
<body>
<table border=1 style="font: 15px arial, sans-serif;">
<tr><th colspan=3>
<b>variables from example_test.go</b>
</th></tr>
<tr>
<th>previousHTML</th>
<th>latestHTML</th>
<th>mergedHTML
</th>
</tr>
<tr>
<td>
<p>Bullet list:</p>
<ul>
<li>first item</li>
<li>第二</li>
<li>3rd</li>
</ul>
</td>
<td>
<p>Bullet <b>list:</b></p>
<ul>
<li>first item</li>
<li>number two</li>
<li>3rd</li>
</ul>
</td>
<td>
<p>Bullet <b><span style="background-color: lightskyblue;">list:</span></b></p>
<ul>
<li>first item</li>
<li><span style="background-color: lightpink;">第二</span><span style="background-color: palegreen;">number two</span></li>
<li>3rd</li>
</ul>
</td>
</tr>
</table>
</body>
</html>