Custom header file shows up in search results
We have a work around that should address this issue.
Formats override on htmlhelp_hhp.xsl located in C:\Program Files\WebWorks\ePublisher Pro\Formats\Microsoft HTML Help 1.x\Transforms:
We also have a tech note article that explains how to achieve Formats overrides:
find the <!-- Iterate copy files --> section
- Replace
<xsl:for-each select="$ParamCopyFiles"> <xsl:value-of select="wwfilesystem:GetRelativeTo(./@path, $ParamOutPath)" /> <xsl:value-of select="'
'" /> </xsl:for-each>
with this:
<xsl:for-each select="$ParamCopyFiles"> <xsl:variable name="VarFileExt" select="wwfilesystem:GetExtension(./@path)" /> <xsl:if test="not($VarFileExt = '.h')"> <xsl:value-of select="wwfilesystem:GetRelativeTo(./@path, $ParamOutPath)" /> <xsl:value-of select="'
'" /> </xsl:if> </xsl:for-each>
3. Save and regenerate.