I stumbled on an interesting problem. Is it possible to use a value in a filter... where the value depends on the filter outcome?
Example: Thomas Elmigers
EditorCounter counts the number of characters in a text (among other things). Let's say I want to make a list of titles
sorted by how many characters each tiddler has in its text field (...which is a real issue as posted
here).
<$list filter="[tag[Foo]]">
<$editor-counter tiddler={{!!title}} field=text /> {{!!title}}<br>
</$list>
...so the question is how to get the output of editorcounter into the filter.
Is it possible? Setwidget? Separate macro for editor counter?...
<:-)