From 35920b11c9dfdc001eea7d3b2582c58aa3aa381b Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Thu, 25 Jul 2024 18:25:35 +0200 Subject: Fix mintmark display for German extras table --- scripts/gen-ecoin | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'scripts/gen-ecoin') 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 -- cgit v1.2.3