Related information in the HTML output
Posted: Mon Jul 02, 2018 2:33 pm
When using a relationship table to create links, by default links are organized by topic type and contain heading such as Related tasks, Related references, Related Concepts. I want all the topics to be grouped together under "Related information" title.
Example of Default Behavior:
Related Tasks
Topic 1
Topic 2
Related Concepts
Topic 3
Related References
Topic 4
Topic 5
Example of what I want to produce:
Related information
Topic 1
Topic 2
Topic 3
Topic 4
Topic 5
I have already done what is recommended here - topic12781.html
And added properties to my reltable
It works great but only for linking the source with targets, but not vice versa. Is there any chance to have two-way linked topics in one list?
Example of Default Behavior:
Related Tasks
Topic 1
Topic 2
Related Concepts
Topic 3
Related References
Topic 4
Topic 5
Example of what I want to produce:
Related information
Topic 1
Topic 2
Topic 3
Topic 4
Topic 5
I have already done what is recommended here - topic12781.html
And added properties to my reltable
Code: Select all
<reltable>
<relheader>
<relcolspec linking="sourceonly">
<title>Related information</title>
</relcolspec>
<relcolspec>
<title>Related information</title>
</relcolspec>
</relheader>
<relrow>
<relcell>
<topicref href="topic.dita"/>
</relcell>
<relcell>
<topicref href="relactedConcept.dita"/>
<topicref href="relatedTopic.dita"/>
<topicref href="relatedTask.dita"/>
</relcell>
</relrow>
</reltable>