Re: [tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-23 Thread Joshua Fontany
Hi mehequeda, You will want to read up on the "ListOps": https://tiddlywiki.com/#ActionListopsWidget Best, Joshua Fontany On Tuesday, June 22, 2021 at 10:49:45 PM UTC-7 mehequeda...@gmail.com wrote: > Thanks Saq, Tones and Jeremy, it was hidden in plain sight. > > The reason I need this is a

Re: [tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-22 Thread Sebastián Ortega
Thanks Saq, Tones and Jeremy, it was hidden in plain sight. The reason I need this is a design decision of some zettlekasten-like features I'm implementing in my wiki. For example, tiddlers tagged with Source are the books, articles, or other sources of concepts I want to track and I've modified

[tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-22 Thread TW Tones
mehequeda, I am curious why you need to do this. Since titles are the key to all tiddler there handling as titles is innate to TiddlyWiki and the need to generate a title with the delimiters [[ and ]] is rare. An example would be using the listops functions and operators where this is handled

[tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-22 Thread PMario
Hi, See: https://tiddlywiki.com/#SetWidget Especially the section: Filter List Variable Assignment -mario -- 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

[tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-22 Thread Saq Imtiaz
For now that is the best we have. However from the next TW release we can use format:titlelist[] https://tiddlywiki.com/prerelease/#format%20Operator On Tuesday, June 22, 2021 at 11:18:55 PM UTC+2 mehequeda...@gmail.com wrote: > I managed to fix the filter but I still feel there must be an

[tw5] Re: Filter question: how to convert current tiddler title into a title list format

2021-06-22 Thread Sebastián Ortega
I managed to fix the filter but I still feel there must be an easier way to do it. <$vars prefix="[[" suffix="]]"> <$button> <$action-sendmessage $message="tm-new-tiddler" source={{{ [all[current]regexp[\s]addprefixaddsuffixelse{!!title}] }}} author={{!!author}}/> Add On Tuesday,