Subject: | POD::Checker should ignore the contents of strings and HERE documents |
Saving the snippet below to a file and running podchecker on it produces the following error twice:
*** ERROR: Spurious text after =cut
In fact there is no pod in the file. It is in the HERE document and the string.
-------SNIP--------
$x = <<HERE;
=pod
HERE document
=cut
HERE
$y = "
=pod
string
=cut
";
print $x;
print $y;
-------SNIP--------