[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread Tony K
where have you been :) it is exactly what I was looking for took me a couple of hours to find it on my own but here was my solution <$set name=currentContent tiddler=<> fied=text> On Friday, May 8, 2020 at 8:31:58 PM UTC+3, Mark S. wrote: > > In this version it's assumed that you only want

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread 'Mark S.' via TiddlyWiki
In this version it's assumed that you only want to transclude one tiddler for one day, and the format is -0MM-0DD. <$wikify name="now2" text=<>> <> <$set filter="[get[text]]" name="curday" select=0> <> The value of the tiddler ends up in variable <> -- You received this message because

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread 'Mark S.' via TiddlyWiki
It would help to explain what you actually want to do. The default <> changes every minute. Do you really have an entire day's worth of tiddlers made in advance that would match <> ? If you just want to fetch contents for the day, then you're going to need to use a format with the macro that

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread TonyM
Have you thought of using {{!!title}} to access the current Tiddlers title? Use this as the value={{!!title}} in a set widget but keep in mind the title equals <> already Regards Tony -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread Tony K
<$transclude tiddler=<> /> works but i want the result in a variable or field On Friday, May 8, 2020 at 2:13:35 PM UTC+3, Saq Imtiaz wrote: > > try <$transclude tiddler={{{ [] }}} /> but note that the value of now > will change every minute. > > On Friday, May 8, 2020 at 1:09:45 PM UTC+2,

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread Saq Imtiaz
try <$transclude tiddler={{{ [] }}} /> but note that the value of now will change every minute. On Friday, May 8, 2020 at 1:09:45 PM UTC+2, Tony K wrote: > > this will get me the value of <> if the variable content right? > > what I want is the content of the tiddler with title the restulf of

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread Tony K
this will get me the value of <> if the variable content right? what I want is the content of the tiddler with title the restulf of <> On Friday, May 8, 2020 at 2:01:38 PM UTC+3, Saq Imtiaz wrote: > > <$set name=content value=<> > > > On Friday, May 8, 2020 at 11:59:30 AM UTC+2, Tony K wrote:

[tw5] Re: how can i transclude a variable tiddler?

2020-05-08 Thread Saq Imtiaz
<$set name=content value=<> > On Friday, May 8, 2020 at 11:59:30 AM UTC+2, Tony K wrote: > > I want to transclude a tiddler with title Today's date and put its content > into a variable ... > > what i tried > <$transclude tiddler=<> /> > > works but can't put the resut in a variable > >