Thank you.
Also found a cmd script on stackoverflow that I modified:
@echo off
echo ^<html^> > toc
for %%i in (*.htm) do echo ^<a href="./%%~nxi"^>%%~ni^</a^>^<br/^> >> toc
for %%i in (*.jpg) do echo ^<a href="./%%~nxi"^>%%~ni^</a^>^<br/^> >> toc
echo ^</html^> >> toc
ren toc toc.html
pause
Makes it much faster to get the basic file. Then edit with notepad++ and rename the toc.html file to author-title.html, and then import the file into Calibre.
|