Usually the knowlLink value will appear at the next $PAR, however this is not the case inside of a scaffold (using scaffold.pl). Inside of a Scaffold, the link pops up at Section::End() instead!
I've tried forcing some kind of wrapper around the knowlLink, but I can't manage to get this to work. Any help is appreciated.
Benjamin Walter
A bit more detail:
I'd like to do something like the following:
Scaffold::Begin();
Section::Begin("Important Section");
BEGIN_TEXT
Basic intro
$BR
\{ knowlLink("For Example",value=>"Interesting Example"); \}
$PAR
Long text of problem
....
END_TEXT
Section::END();
and have the interesting example appear where the knowlLink is rather than at the end of the entire section.