SharpDoc
SharpDoc copied to clipboard
CHM Support
Is there any support for Microsoft CHM Help? I looked thru the code a bit and didn't see anything, but figured I would ask.
To support it we would need SharpDoc to dump out the table of contents and index in some slightly different formats. I would assume the user would provide the HTML Help Workshop project which would then be passed to hhc.exe to compile the help document.
Any thoughts? Would a PR that added this feature be welcome?
Yep, no support for CHM so far, so PR is welcome!
I worked with CHM a long time ago, so I don't remember well all the details to support it. In SharpDoc, It should be possible to implement it as a style (.cshtml) without modifying the core code (.cs files). Ideally, if it could generate everything (all the requires .mh files) and call directly the hhc.exe to package the whole.
Cool... i'll make some time for this.
SharpDoc, It should be possible to implement it as a style
Yea... that was what I was thinking. Just have to learn how to use the templates a little better than I do right now. ;)
Ideally, if it could generate everything (all the requires .mh files) and call directly the hhc.exe to package the whole.
Sure... i'll investigate that after I get it generating the needed files.