Hi Jim I would like to render a list of all missing tiddlers sorted by the number > of the backlinks referencing them. The simple code for a specified tiddler > is the following. However, I don't know how to include it in the list > widget, set aside the sorting procedure. >
I don't think it would currently be possible to sort by the number of backlinks. The code for a list of tiddlers indicating the number of backlinks would be: <ul> <$list filter="[tag[introduction]sort[title]]"> <li><$link><$view field="title"/> <$count filter="[all[current]backlinks[]]"/></$link></li> </$list> </ul> Be aware that computing backlinks for a lot of tiddlers is very slow - you really don't want TiddlyWiki to have to update those totals very often. I'd advise putting the listing in a dropdown that automatically hides itself. Best wishes Jeremy. > > <$count filter="[all[current]backlinks[]]"/> > > Thanks > > > > -- > 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. > -- Jeremy Ruston mailto:[email protected] -- 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.

