fxia has asked for the wisdom of the Perl Monks concerning the following question:
I just found that pod2html does not work on regular pm files
with documentation after the "__END__" of file. But if I
cut and paste the documentation into a "pure" pod file,
the tool works. pod2man does not have such a problem.
Am I missing something?
Thanks.
Fred
OK. I found why. The reason is that I'm running on NT.
The end-of-line is automatically \r\n by emacs. pod2html
does not work with \r\n. But pod2man works. Once I change
all \r\n to \n, pod2html works fine. Is that a bug in
pod2html?