diff options
author | Thomas Voss <mail@thomasvoss.com> | 2023-10-30 16:21:23 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2023-10-30 16:21:23 +0100 |
commit | dfae8ae26dfbc859fd4c49d32cfa380ea260f2bc (patch) | |
tree | 5296c44e08b0ef4f50a752c0b514f9641152078b /scripts/gen-pres | |
parent | 613c9c22f839452aae7cf64ae641b668451ec412 (diff) |
Update lots of shit
Diffstat (limited to 'scripts/gen-pres')
-rwxr-xr-x | scripts/gen-pres | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/scripts/gen-pres b/scripts/gen-pres deleted file mode 100755 index 6106b99..0000000 --- a/scripts/gen-pres +++ /dev/null @@ -1,39 +0,0 @@ -#!/bin/sh - -gawk ' -@include "scripts/getcls.awk" - -function getsup(i, s) -{ - switch (i) { - case 1: - s = "D" - break - case 2: - s = "P" - break - case 3: - s = "S" - break - } - - return "@sup{-" s "}" -} - -BEGIN { - FS = "\t" -} - -{ - printf "trX { td .missing colspan=\"2\" {-%s}", $3 - split($2, a, / /) - for (i = 1; i <= length(a); i++) - printf "td .%s colspan=\"1\" {-%s %s}", getcls(a[i]), $1, getsup(i) - print "}" -} - -END { - print "__MARKER__" -} -' data/world/pds.us \ -| scripts/last-of-design.sed |