writing: keyed table rows in includes
[sheet.git] / latin.plp
index 2809d7efdb8ef74bc1fb2d8db384dfb32b402ab1..24c74c61d7dc7e33ecd823d6a18c3c0aa90b283f 100644 (file)
--- a/latin.plp
+++ b/latin.plp
@@ -33,7 +33,8 @@ if ($! or $@) {
        printf "<p>Table data not found: <em>%s</em>.</p>\n", $! || $@;
 }
 else {
-       print $glyphs->table(exists $get{uc} ? [map {s/\s.//; uc} @table] : \@table);
+       my @az = map { @$_ } grep { ref $_ eq 'ARRAY' } @table;
+       print $glyphs->table(exists $get{uc} ? [map {s/\s.//; uc} @az] : \@az);
 }
 
 print "</div>\n";