summaryrefslogtreecommitdiffhomepage
path: root/scripts/gen-ecoin
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/gen-ecoin')
-rwxr-xr-xscripts/gen-ecoin12
1 files changed, 10 insertions, 2 deletions
diff --git a/scripts/gen-ecoin b/scripts/gen-ecoin
index 9d39205..190725a 100755
--- a/scripts/gen-ecoin
+++ b/scripts/gen-ecoin
@@ -1,12 +1,20 @@
#!/bin/sh
gawk -v CC=$1 '
+@include "scripts/getcls.awk"
+
BEGIN {
FS = "\t"
CC = toupper(CC)
}
$1 == CC {
- printf "tr {td{-%s} td{-%s} td .have colspan=\"5\" {-%s}}", $2, $3, $4
+ if (split($2, a, " ") == 1) {
+ printf "tr {td{-%s} td{-%s} td .%s colspan=\"5\" {-%s}}", \
+ $2, $3, getcls($4), $5
+ } else {
+ printf "tr {td{-%s @sup{-%s}} td{-%s} td .%s colspan=\"5\" {-%s}}", \
+ a[1], a[2], $3, getcls($4), $5
+ }
}
-' data/errors
+' data/extras