erdarshp
erdarshp

Reputation: 443

How to generate .hhp file from windows command prompt?

My goal is to achieve an automated process which converts HTML files into the CHM file format. I am able to generate chm file using hhp from command line.

hhc filename.hhp

But hhp file was generated using HTML helper tool. How I can create hhp file using the command line? Or how to created a CHM file if you have HTML files only?

Upvotes: 1

Views: 508

Answers (1)

Marco van de Voort
Marco van de Voort

Reputation: 26371

Write the hhp by hand or generate using a different programming language. The .hhp is just html tool's project, containing the settings and filelist for conversion

The best solution is to integrate the hhp generation with your html generation if you do so.

Upvotes: 1

Related Questions