Files
silby 806dcb0849 Consume blanks after =encoding in pod reader (#10544)
The reader did not properly consume empty lines after =encoding commands,
which produced various incorrect parses depending on the content between
there and the next command.

Fixes #10537
2025-01-15 12:07:26 -08:00

228 B

% pandoc -f pod -t html
=encoding utf8

=head1 NAME

Test document
^D
<h1>NAME</h1>
<p>Test document</p>
% pandoc -f pod -t html
=encoding utf8


=head1 NAME

Test document
^D
<h1>NAME</h1>
<p>Test document</p>