I just want to add a quick line, the batch command to convert quickly a whole directory of HTML files in Windows is the following one :
for %f in (*.html *.htm) do html2lrf %f
I have forgottent how to do proper batch scripts, and I needed to google it, so I suppose this could help someone else...
|