X-Git-Url: http://git.shiar.nl/sheet.git/blobdiff_plain/5d0b74f716de9889618c99c71d151ab3bf53b76b..cf4725793daaff890b295b5269d224dfd33b52c0:/termcol.plp diff --git a/termcol.plp b/termcol.plp index 3d807a2..3f8befc 100644 --- a/termcol.plp +++ b/termcol.plp @@ -131,14 +131,18 @@ sub coltable { printf "%s\n", $caption; for my $row (@$table) { print ''; - print colcell(@$_) for @$row; + print colcell(ref $_ ? @$_ : $_ ? reverse split /:/ : undef) for @$row; } + if (@draw) { my $width = scalar @{ $table->[0] }; - my @imgpal = map { [ @{$_}[1 .. 3] ] } map { @{$_} } @{$table}; + my @imgpal = map { + [ ref $_ ? @{$_}[1 .. 3] : map {hex} /(..)(..)(..)/ ] + } map { @{$_} } @{$table}; for (@draw) { print "", img_egapal(\@imgpal, @{$_}); } + } print "\n\n"; }