-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgenerate-html.sh
executable file
·64 lines (61 loc) · 1.46 KB
/
generate-html.sh
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
#! /usr/bin/env bash
#
# Converteix una llista Diceware a format html a 6 columnas i posa els salts
# necessaris perquè s'imprimeixi correctament a 36 fulles de 36 línies.
#
# El fitxer resultant també és pot obrir perfectament amb Excel i LibreOffice,
# tot i que faltaria afegir alguna capçalera per a que LibreOffice l'obri
# sense preguntar res.
#
function html {
title="$@"
cat <<EOF
<!DOCTYPE html>
<html lang="ca">
<head>
<title>$title</title>
<meta charset="UTF-8">
<style type="text/css">
<!--
th {
font-family: monospace;
font-weight: normal;
color: red;
}
@media print {
.page {
page-break-after: always;
}
}
-->
</style>
</head>
<body>
<table>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<colgroup span=2>
<tbody>
EOF
awk '
# ignorar línies que no interessen
!/^[1-6][1-6][1-6][1-6][1-6] / { next }
# compta línies i mira si cal partir la pàgina
{ ++n; page = n > 1 && n % (6 * 6 * 6) == 1 }
/^....1/ && page { print " <tr class=\"page\">" }
/^....1/ && !page { print " <tr>" }
{ print " <th scope=\"colgroup\">" $1 "</th><td>" $2 "</td>" }
/^....6/ { print " </tr>" }
'
cat <<EOF
</tbody>
</table>
</body>
</html>
EOF
}
html "Llista Diceware sense accents" < cat-wordlist-ascii.txt > cat-wordlist-ascii.html
html "Llista Diceware" < cat-wordlist-utf8.txt > cat-wordlist-utf8.html