Re: [perl #129862] [BUG][POD] Pod::To::Text failing on uneven row lengths

2016-10-14 Thread Tom Browder
On Thu, Oct 13, 2016 at 8:32 PM, Zoffix Znet via RT
 wrote:
>
> PR merged[^1]; tests needed.
>
> [1] 
> https://github.com/rakudo/rakudo/commit/7af9ec9d90d4ec8e9732e979729df85a80f7ec11

See perl/roast PR 168.


Re: [perl #129862] [BUG][POD] Pod::To::Text failing on uneven row lengths

2016-10-12 Thread Tom Browder
On Wed, Oct 12, 2016 at 3:22 PM, David Warring 
wrote:
> # New Ticket Created by  David Warring
> # Please include the string:  [perl #129862]
> # in the subject line of all future correspondence about this issue.
> # https://rt.perl.org/Ticket/Display.html?id=129862 >
>
>
> Consider pod.pl:
>
> =begin pod
>
> =begin table
> a | b | c
> l | m | n
> x | y
> =end table

With the current state of rakudo
​ pod​
, ill-formed tables are problematic.  Try redoing the table like this
(adding the separator for the missing column, making the column spacing the
same, lining up the column separators):

=begin table
a | b | c
l | m | n
x | y |
​  ​
=end table

​It still might not work with the empty cell.
​