aboutsummaryrefslogtreecommitdiff
path: root/doc/versiontable.awk
blob: 96108fdede7a2a290fc6dc43a3744bb1f7ca198d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/awk -f
BEGIN {
	print "\\noindent\\begin{tabularx}{\\linewidth}{llXr}"
	print "\\toprule"
	print "Version & Commit & Notes & Date\\\\"
	print "\\midrule"
}
{
	sub("doc-", "", $1)
	print $1" & \\texttt{"$2"} & "$3" & \\DTMdisplaydate"strftime("{%Y}{%m}{%d}{-1}", $4)"\\\\"
}
END {
	print "\\bottomrule"
	print "\\end{tabularx}"
}