I have been occasionally creating a task file that holds multiple
short tasks nested within. Something like:
<task id="main">
<title>Administrators</title>
<taskbody>
<context>
<p>Intro paragraph.</p>
</context>
</taskbody>
<task id="subtask1">
<title>First task</title>
<taskbody>
.
.
.
</taskbody>
</task>
<task id="subtask2">
<title>Second task</title>
<taskbody>
.
.
.
</taskbody>
</task>
</task>
Using the 1.2.2 toolkit I'm not getting the output I would expect. It
is creating the parent topic link after the first subtask. I would
think it should format the parent topic link after the last subtask as
the parent topic is the parent to the whole file. I could always just
split each task into a separate file, but these are all related and
very short tasks, so it makes more sense that they just be nested.
Am I missing something?