-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.py
69 lines (64 loc) · 1.71 KB
/
template.py
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
table_header = """<table>
<thead>
<tr>
<th>Section</th>
<th>Subsection</th>
<th>Section Offset</th>
<th>Length</th>
<th>Type</th>
<th>Description</th>
<th>Notes</th>
</tr>
</thead>
<tbody>"""
top_row = """
<tr>
<td rowspan={section.span}>{section.name}</td>
<td>{subsection.name}</td>
<td>{subsection.offset}</td>
<td>{subsection.length}</td>
<td><code>{subsection.type}</code></td>
<td>{subsection.description}</td>
<td>
<ul>{subsection.notes}
</ul>
</td>
</tr>"""
later_row = """
<tr>
<td>{subsection.name}</td>
<td>{subsection.offset}</td>
<td>{subsection.length}</td>
<td><code>{subsection.type}</code></td>
<td>{subsection.description}</td>
<td>
<ul>{subsection.notes}
</ul>
</td>
</tr>"""
name_row = """
<tr>
<td><a href=Var-Files#TIEntry>Meta</a></td>
<td>{subsection.name}</td>
<td>{subsection.offset}</td>
<td>{subsection.length}</td>
<td><code>{subsection.type}</code></td>
<td>{subsection.description}</td>
<td>
<ul>{subsection.notes}
</ul>
</td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>"""
table_footer = """
</tbody>
</table>
"""