What good libraries are there, in any common language, for converting PDF to HTML?
In linux install pdftohtml - For batch convertion of all files in a folder use:
ls *.pdf | xargs -I{} pdftohtml {}
This will create html site with all references and images from original documents. Every page in a separate html file. Very useful to convert project documentation to search for files by phrase, using common system file search.