context-help-map has duplicate entries
Posted: Fri May 19, 2023 11:33 pm
Hi there,
I have a bookmap with references to three unique topics. One topic is reused. Two topics are pointing to each other in a reltable.
When I generate webhelp and I open the resulting context-help-map.xml file, I see duplicate entries for the reused topic and the topics referenced in the reltable. I would expect one entry per topic. Is this expected behavior? If so, is there a way for me to turn off the duplication?
Thanks!
Micaela
I have a bookmap with references to three unique topics. One topic is reused. Two topics are pointing to each other in a reltable.
Code: Select all
<bookmap id="bm_Test">
<booktitle>
<mainbooktitle>Test</mainbooktitle>
</booktitle>
<bookmeta/>
<chapter href="c_Concept.dita"/>
<chapter href="tk_Task.dita"/>
<chapter href="r_Reference.dita"/>
<chapter href="c_Concept.dita"/>
<reltable>
<relheader>
<relcolspec/>
<relcolspec/>
</relheader>
<relrow>
<relcell>
<topicref href="r_Reference.dita"/>
</relcell>
<relcell>
<topicref href="tk_Task.dita"/>
</relcell>
</relrow>
</reltable>
Code: Select all
<?xml version="1.0" encoding="UTF-8"?>
<map>
<appContext helpID="c_Concept" path="c_Concept.html"/>
<appContext helpID="tk_Task" path="tk_Task.html"/>
<appContext helpID="r_Reference" path="r_Reference.html"/>
<appContext helpID="c_Concept" path="c_Concept.html"/>
<appContext helpID="r_Reference" path="r_Reference.html"/>
<appContext helpID="tk_Task" path="tk_Task.html"/>
</map>
Micaela