I know there are about a zillion pod converters our there, and half of them do some form of html output.
I'm currently build a site for my project and I want to convert the pod in the pm files to XHTML and dump them on the site.
My issue with most of the modules out there is that they do things like uppercase all tags, or they spit out whole html files. I need to spit out html and stuff that between a custom header/footer. I've seen a few modules that allow that as well, but then convert =head1 to H2 instead of H2.
I really don't want to put any realy work into this, but it looks like I may have to. What have others done?
Try Pod::POM::View::HTML, makes things easy-peasy.
Another option might be to use something like Pod::SAX and trasnform the resulting document to your liking using XSLT.
Have you looked into Pod::Simple. I've had a lot of success doing custom POD things with it. The documentation isn't great but there are plenty of classes to crib from or subclass.