Subject: | Verbatim parts are reported in chunks |
Verbatim parts come in chunks if they contain empty lines. So, for example the following code:
use strict;
print 'Hello';
will be processed as two different "verbatim" parts: "use strict;" and "print 'Hello';", because there is a separating blank line.
This makes it especially hard to parse pod with the intention to produce markdown or HTML with syntax highlight for the verbatim parts.