Subject: | Use of uninitialized value within @alignments |
I have a table that MultiMarkdown doesn't quite like:
joey@kodama:~>cat foo
| table | table | table |
| | | |
| a | b | c |
joey@kodama:~>perl -e ' my $a=join("", <>); use Text::MultiMarkdown;
print Text::MultiMarkdown::markdown($a, {use_metadata => 0})' < foo
Use of uninitialized value within @alignments in pattern match (m//) at
/usr/share/perl5/Text/MultiMarkdown.pm line 1026, <> line 3.
(It correctly rendered the table aside from this uninitialised value
warning.)