From the Oxygen documentation topic "How to Copy Additional Resources to Output Directory":
For the second option, that documentation topic refers specifically, and only, to setting the parameter in the Oxygen user interface, not a publishing template (.opt file).You can copy additional resources (such as JavaScript, CSS, or other resources) to the output directory either by using an Oxygen Publishing Template or the webhelp.custom.resources parameter.
Setting this parameter in an .opt file to a folder path relative to that .opt file (where custom-resources is a folder in the same folder that contains the .opt file):
Code: Select all
<parameter name="webhelp.custom.resources" value="custom-resources"/>
Setting the parameter via the Oxygen UI, with an absolute path, as described in that doc topic, works. So does setting the parameter in the .opt file with that absolute path.
In my .opt, I currently use:
Code: Select all
<fileset>
<include name="resources/**/*"/>
</fileset>
This mean that I need to specify other parameter values with that "oxygen-webhelp\template" path, like this:
Code: Select all
<parameter name="webhelp.logo.image" value="oxygen-webhelp/template/resources/images/logo-white.svg"/>
Thoughts?