Subject: | PPI incorrectly terminates pod on =CUT |
PPI is currently considering '=CUT' to be a valid pod terminator when it
is not.
line 150 if Token::Pod should be this:
$t->_finalize_token if lc $1 eq 'cut';
instead of this:
$t->_finalize_token if $1 eq 'cut';
--
-jae