forked from xem/miniMinifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
52 lines (42 loc) · 659 Bytes
/
test.html
File metadata and controls
52 lines (42 loc) · 659 Bytes
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
<!doctype html>
<!--
Mini CSS Minifier
simple test file
-->
<!-- remove unnecessary whitespaces in tags and between tags -->
<div class=space id=space>
<a>
<img>
</a>
</div>
<!-- remove trailing spaces and slashes in tags -->
<br />
<!-- remove unnecessary closing tags -->
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
<table>
<tr>
<th>head</th>
<th>head</th>
<th>head</th>
</tr>
<tr>
<td>cell</td>
<td>cell</td>
<td>cell</td>
</tr>
</table>
<p>paragraph</p>
<P>paragraph</P>
<p>paragraph</p>
<br>
<div>
<p>paragraph
</div>
<div>
<p>paragraph</p>
</div>