I use Dist::Zilla and a bunch of plugins to check my pod, including syntax, links, coverage etc. One really annoying POD mistake that I keep repeating is to forget to add an extra line after a =headX; for example, I just created a module with pod that looks like the following:
=head1 METHODS
=head2 C<wm_graph>
There are three required arguments: ...
If the first arg is ...
Of course, I go and look at the CPAN page and realize I screwed it up, as the entire paragraph is in head2 format:

Are there any good, automated ways to check that I didn't forget to put space between a =headX (or anything else) and the next paragraph?
podcheckerdoesn't catch it, and I haven't seen any tools that will. Yes, it's annoying because I do the same thing, but it's not really an error. – David W. Dec 2 '12 at 0:53