[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-09 Thread Shash
Hi Stephan, How do you match this in your footnote idea in tiddlystuff. *9:Oct 04:58--test* I used the below but it is not helping me. $list filter=[match:text/\{\{(^\d+:\w\w\w\s\d\d:\d\d)\-\-\(.*?)\|\|footnote\}\}/(g)] $view field=title/br/ /$list Shash On Thursday, October 9, 2014 1:37:05

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-09 Thread Shash
Hi Mario, Really appreciate your patience here in helping me out. I reckon I did not provide you with enough info for this tweak. Apologies for that. After finding out some more useful info I felt I could use Stephan's footnote idea for my journal. I think I should be able to get exactly what

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-09 Thread Stephan Hradek
Am Donnerstag, 9. Oktober 2014 14:00:30 UTC+2 schrieb Shash: Hi Stephan, How do you match this in your footnote idea in tiddlystuff. First of all: I'm not sure that match is compatible to the current TW release. Second: You should use anchors (^and $) only when they are appropriate.

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-08 Thread Stephan Hradek
Does this example help? $list filter=[is[current]tags[]regexp[^\d+:\w\w\w\s\d\d:\d\d$]] $view field=title/ /$list -- 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

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-08 Thread PMario
On Wednesday, October 8, 2014 10:32:06 AM UTC+2, Stephan Hradek wrote: Does this example help? $list filter=[is[current]tags[]regexp[^\d+:\w\w\w\s\d\d:\d\d$]] $view field=title/ /$list A human readable description for Stephans regexp :) // ^\d+:\w\w\w\s\d\d:\d\d$ // // Options: case

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-08 Thread Shash
Thanks Stephan and Mario. I have modified the regex using regex101.com to suit my needs. :) I have one more question. Is there a way to get the actual title of the tiddler here. For example I would like to get *06-Oct 18:00 - Swimming. * Where Swimming is the name of the tiddler and 06-Oct

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-08 Thread PMario
I'm not sure about your structure. \define newFilter() [tag[$(listItem)$]] \end ul $list filter=[tag[Completed]tags[]regexp[^\d+-\w\w\w\s\d\d:\d\d$]] variable=listItem $list filter=newFilter licurrentTiddler -- listItem /li/$list /$list /ul The list may need a different wrappers, but it

[tw] Re: How to list only the desired tag in a group of tags for a tiddler where one of the tag is generated by dateTime macro

2014-10-08 Thread PMario
On Wednesday, October 8, 2014 7:33:58 PM UTC+2, PMario wrote: I'm not sure about your structure. \define newFilter() [tag[$(listItem)$]] \end ul $list filter=[tag[Completed]tags[]regexp[^\d+-\w\w\w\s\d\d:\d\d$]] variable=listItem $list filter=newFilter licurrentTiddler -- listItem