Subject: | Blank lines interpreted as verbatim paragraphs |
CC: | jj [...] jonallen.info |
The current version of Parser.pm (1.14 from distribution 1.26)
interprets a sequence of two or more consecutive blank lines as a
verbatim paragraph (from perlpodspec, these paragraphs should start with
a literal space or tab character).
The attached patch changes the regex to search for indented text from
/^\s+/ to /^[ \t]/.
Regards,
JJ
997c997
< elsif ($text =~ /^\s+/) {
---
> elsif ($text =~ /^[ \t]/) {