Subject: | Pod formatting problems (C<...> instead of C<<...>>) |
The documentation contains lines like
=item * C<pattern => $string>
or
=item * C<<normalise => $one_or_zero_or_ISO>>
which is not parsed and rendered correctly (see https://metacpan.org/pod/DateTime::Format::Duration#CONSTRUCTOR for an example; tkpod and perldoc output also looks broken). In the first example the embedded ">" is not escaped, and in the second example the space after << and before >> is missing. These lines should look like this:
=item * C<< pattern => $string >>
=item * C<< normalise => $one_or_zero_or_ISO >>