charset: indicate continued columns without overlap
authorMischa POSLAWSKY <perl@shiar.org>
Fri, 21 Apr 2017 14:16:55 +0000 (16:16 +0200)
committerMischa POSLAWSKY <perl@shiar.org>
Thu, 25 May 2017 20:10:23 +0000 (22:10 +0200)
Ellipsis to indicate next row, (ditto) quotes for previous.

charset.plp

index c89c92452f1e5ba7d73758a42914d352957e3d0c..5955c390a6da4327d490972a7bc3ea585659c873 100644 (file)
@@ -346,15 +346,16 @@ sub range_cell {
                if ($len -= $rest) {
                        # continued on new row
                        my @next = ($len * $colsize, "$class joinu");
+                       my $separate = $cols - $len > $rest;  # columns not on next row
                        if ($len > $rest) {
                                # minority remains
                                push @next, $name, $title;
                                $title ||= $name;
-                               $name = '';
+                               $name = $separate && '…';
                        }
                        else {
                                # minority on next row
-                               push @next, '"', $title || $name;
+                               push @next, $separate && '"', $title || $name;
                        }
                        $table->{$offset + $colsize*$rest} //= \@next;
                        $class .= ' joind';