Given a minimal input POD document like this ```pod =encoding utf8 =head1 NAME Test document ``` the recently released pandoc 3.6.2, run with `pandoc -f pod Minimal.pod` (on Linux), outputs ```html =head1 NAME Test document ``` instead of the expected ```html NAME Test document ``` Placing a normal paragraph after the `=encoding` yields an expected result, i.e. ```pod =encoding utf8 Dummy paragraph. =head1 NAME Test document ``` outputs ```html Dummy paragraph. NAME Test document ``` However, adding an extra blank line instead, as in ```pod =encoding utf8 =head1 NAME Test document ``` leads to a parsing error: ```shell Error at "Minimal.pod" (line 4, column 1): unexpected '\n' expecting Pod paragraph ^ ``` which does not seem reasonable.