There's a problem with this pattern that we've been using throughout this section to create a list of links to tiddlers:
<$list filter="a filter">
<<currentTiddler>>
</$list>
The problem is that if the name of the currentTiddler
has a space in it, it is not linked. The only reason the results have displayed correctly so far is that they're in CamelCase and as such are linked automatically.
To explicitly create internal links, as we alluded to back in Widgets, we can use the $link
widget:
<$link to="Tiddler Name to Link To">Text of the Link</$link>
Add a space to the title of one of your meeting tiddlers, so you can see the problem, then modify the MeetingList
you created in Ex:BulletedMeetingList, using the $link
widget to fix this problem.
Hint: <<currentTiddler>>
will get replaced in more places than you might think.
Go to answer: Ex:LinkPattern/answer