Is there a Perl module out there that can take bad HTML (such as what is copied from Microsoft Word) and parse it into nicely formatted HTML? I have looked at HTML::Tidy, but it has gotten horrible reviews on CPAN. We have a custom legacy module that's basically a wrapper for the command line version of tidy (which seems to be pretty much what HTML::Tidy is), but it writes files to disk and reads them back in, which can be a big performance penalty. Certainly with Perl's awesome text parsing abilities, there's a better way to do this right?
|
feedback
|
|
Two things: 1) There really isn't an alternative to tidy, since it does the job for most people. Is there some behavior of the command-line tool that is inadequate for you? Perhaps if you presented an example of why it's not up to snuff we could get a better understanding of the problem. 2) Regarding performance, you might consider modifying your wrapper to call
| |||||
feedback
|