On Tuesday, June 28, 2016 at 1:18:30 PM UTC-5, Thomas McLeod wrote:
>
> So I want to be able to search for all items tagged with String+Title. 
> Example: 
> Input: Company{{!!title}}
> Output: CompanyApple
> Where: Company is the string and Apple is the title of the tiddler
>
> Now I want to be able to do this with a filter.
> <<list-links filter:"[tag[Company{{!!title}}]sort[]]">>
>
> This just returns nothing. 
>
> I've also tried:
> <<list-links filter:"[tag[Company+{{!!title}}]sort[]]">>
>
> <<list-links filter:"[tag{{Company+!!title}}sort[]]">>
>
>
Something like this?

 \define build-fullname() $(prefix)$$(title)$

<$set name=prefix value=Company>
<$set name=title value={{!!title}}>
<$set name=fullname value=<<build-fullname>>>
<<fullname>> List:

<$list filter="[tag<fullname>sort[]]"></$list>
</$set>
</$set>
</$set>




-- 
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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/da9118ce-cce0-4399-9641-a0f8ad4b47cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to