diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/gen-ecoin | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/gen-ecoin b/scripts/gen-ecoin index 18512b8..190725a 100755 --- a/scripts/gen-ecoin +++ b/scripts/gen-ecoin @@ -9,6 +9,12 @@ BEGIN { } $1 == CC { - printf "tr {td{-%s} td{-%s} td .%s colspan=\"5\" {-%s}}", $2, $3, getcls($4), $5 + 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/extras |