chm2qch: Converter CHM -> QCH
Showcase
2
Posts
2
Posters
2.4k
Views
1
Watching
-
I've created a simple utility for converting Windows CHM files to Qt Help format. It extract CHM contents, creates Qt Help project file (.qhp) with TOC & keywords and runs qhelpgenerator.
https://bitbucket.org/mitrich_k/chm2qchInstalling:
Build it..qmake chm2qch.pro make...or download Win32 build (can be outdated)
Running:
chm2qch [options] helpfile.chmOption Description -?, -h, --help Displays help. -g, --generate Run qhelpgenerator to produce QCH file -c, --clean Delete intermediate files (*.htm, *.gif, etc.) - use with -g -r, --no-root Do not write root contents section -q, --quiet Quiet mode. Do not write any messages to stdout -n, --namespace <name> Set documentation namespace to <name> -d, --directory <dir> Set output directory to <dir> Example:
chm2qch sapi.chm -n=com.microsoft.sapi.51 -g -c -
Hi,
Thanks for sharing ! :)