-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·51 lines (46 loc) · 1.86 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
title: "HTML Tidy Binary Releases"
---
<h1>HTML Tidy Binary Releases</h1>
<p class="note">
These are HTACG HTML Tidy official releases. Visit our
<a href="https://github.com/htacg/tidy-html5">Github Repository</a>
for source code for cutting edge (“next”-branch) versions.
</p>
{% for release in site.data.tidy %}
<table class="directory">
<thead>
<tr>
<td colspan="4">
<p>
{{release.heading}}
{% if {{release.notes != null}} %}
<a href="{{site.baseurl}}/release_notes/{{release.notes}}" class="release_notes">(release notes)</a>
{% endif %}
<a href="https://github.com/htacg/tidy-html5/releases/tag/{{release.release}}" class="release_path">(official release)</a>
<a href="https://github.com/htacg/tidy-html5/archive/{{release.release}}.zip" class="">(source .zip)</a>
<a href="https://github.com/htacg/tidy-html5/archive/{{release.release}}.tar.gz" class="">(source .tar.gz)</a>
</p>
</td>
</tr>
<tr>
<td>Name</td>
<td>Last Modified</td>
<td>Size</td>
<td>Description</td>
<td>SHA256</td>
</tr>
</thead>
<tbody>
{% for binary in release.binaries %}
<tr>
<td><a href="https://github.com/htacg/tidy-html5/releases/download/{{release.release}}/{{binary.filename}}">{{binary.filename}}</a></td>
<td>{{binary.modified}}</td>
<td>{{binary.filesize}}</td>
<td>{{binary.describe}}</td>
<td>{{binary.sha256}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endfor %}