Two settings allow you to specify additional properties for contents and index:
[MSHtmlHelpOptions] ; Properties for the .hhc and .hhk files; can contain macros. HHCProperties=<param name="ContentsParamName" value="ParamValue"> HHKProperties=<param name="IndexParamName" value="ParamValue">
Each setting assigns a parameter for an HTML Help contents or index properties object. You can use DITA2Go macros to assign multiple parameters. For example:
[MSHtmlHelpOptions] HHCProperties=<param name="ContentsParam" value="ContentsValue"> HHKProperties=<$HHKPropMacro>
[HHKPropMacro] <param name="IndexParam" value="IndexValue"> <param name="OtherIndexParam" value="OtherIndexValue">
DITA2Go supplies the enclosing <object type="text/site properties"> tag.
You can choose contents or index properties in HTML Help Workshop, then specify those same properties in the configuration file, so they will be applied every time you run the conversion. For example, to customize contents:
<!-- Sitemap 1.0 --> </HEAD><BODY> <OBJECT type="text/site properties"> <param name="Window Styles" value="0x800425"> </OBJECT>
[MSHtmlHelpOptions] HHCProperties=<param name="Window Styles" value="0x800425">
If there is more than one <param ...> tag, use a macro; for example:
[MSHtmlHelpOptions] HHCProperties=<$MyHHCProps>
[MyHHCProps] <param name="Window Styles" value="0x800425"> <param name="Background" value="0x808040">
See HTML Help Workshop Help for information about the properties you can specify.