The link to send mail to Peter Thatcher doesn't work - it seems he is no longer at asu.edu. Anyone know how to contact him?
Also, there is an html2latex-1.1 floating around on the net (eg <http://www.go.dlr.de/fresh/unix/src/www/html2latex-1.1.tar.gz>) which seems to be still maintained by him, but doesn't feature on the SourceForge pages.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Since, according to this forum, no one is currently maintaining html2latex, I'll post here a bug-fix that was a showstopper for me.
In version 1.0, in Latex.pm, line 793, the "\n" needs to be removed, or you'll get unwanted whitespace after every TeX command. In other words, change the line from
The link to send mail to Peter Thatcher doesn't work - it seems he is no longer at asu.edu. Anyone know how to contact him?
Also, there is an html2latex-1.1 floating around on the net (eg <http://www.go.dlr.de/fresh/unix/src/www/html2latex-1.1.tar.gz>) which seems to be still maintained by him, but doesn't feature on the SourceForge pages.
Since, according to this forum, no one is currently maintaining html2latex, I'll post here a bug-fix that was a showstopper for me.
In version 1.0, in Latex.pm, line 793, the "\n" needs to be removed, or you'll get unwanted whitespace after every TeX command. In other words, change the line from
return "\\$command\{" . texify($html_element) . "\}\n";
to read:
return "\\$command\{" . texify($html_element) . "\}";