How can a node type be described such that it will contain:
TITLE that is the same as the heading paragraph that triggered the node.
This is done by:
NODE BasicSection
{
TITLE headingtext(current)
HEADER
{
@NavigationPanel=concatenate(
button("[Next] ",filename(next)),
button("[Prev] ",filename(previous)));
write(*,paragraph(@NavigationPanel));
write(*,paragraph(headingtext(up)));
}
FOOTER
{
write(*,toc(2,local));
write(*,address(concatenate("MR - ",date())));
write(*,paragraph(@NavigationPanel));
}
}