As an exercise for using the list widget I am trying to generate a list 
displaying all tiddlers that have internal links and their internal links 
as a definition list:

;tid A
:link 1
:link 2
;tid B
:link 3
:link 4


I tried the following but I find myself unable to determine properly 
whether a tiddler actually has links and to remember its title using a wikitext 
variable <http://tiddlywiki.com/#Variables%20in%20WikiText>...

<dl>
<$list filter="[all[tiddlers]]">
<dt>
<$set name="tid" value={{!!title}}/>
<$list filter="[all[current]links[]first[]]">
<$link to=$(tid)$>$(tid)$</$link>
</$list>
</dt>
<$list filter="[all[current]links[]]">
<dd><$link to={{!!title}}><$view field="title"/></$link></dd>
</$list>
</$list>
</dl>

Also, once working, would this also be possible for external links?

Best wishes, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.

Reply via email to