I have some code in a Markdown ``` block that includes an empty line. markdown2pod doesn't handle code blocks with blank lines, it passes them right through. If I remove that empty line it's parsed correctly.
Doesn't work:
\```perl
my $foo = 'bar';
my $line2 = 7
my $line3 = undef;
\```
Works:
\```perl
my $foo = 'bar';
my $line2 = 7
my $line3 = undef;
\```
I had to \ the triple backticks so Github wouldn't render it.