On Thursday, June 25, 2020 at 7:20:12 AM UTC-7, Daniel Zion wrote: > > I started using Tiddlywiki in February for a commonplace book kind of > thing. I like the journal aspect, but I'm having a problem with organizing > it. I have a "Journal List" tiddler that has the very simple > <<list-links [tag[Journal]]>> > to display all of my journal tiddlers. I've run into two issues that I > can't seem to find an answer for. First, this organizes the list by the > title alphabetically, not by date. What could I add that puts them by date? > I use ISO 8601 for my dates, so it's useable as is, but it would be nice to > get them right. >
You can combine multiple filter operators to achieve more specific results. In this case, add in the sort[...] operator, like this: <<list-links [tag[Journal]!sort[modified]]>> This will find tiddlers with the "Journal" tag AND also sort the resulting list by the "modified" date field of each tiddler, in reverse order (i.e., newest date first) <<list-links [tag[Journal]regexp:modified[^2020]!sort[modified]]>> This will find tiddlers with the "Journal" tag, where the "modified" field value "begins with 2020" (using "regular expression" syntax) enjoy, -e -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/15bdeb29-c3ab-4f19-828e-eb31bdd785eao%40googlegroups.com.

