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

25 lines
228 B
Markdown

```
% 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>
```