- I have a list of items in a filter called
inrecipe-filter
, generated from tiddler fields (like apple, banana, raspberry, orange,…) (first list = first array) - I have a dictionary tiddler say fruits, contains
key:value
pairs (second list = second array) - I want to see if my fruits contains any of the item in the first list (
inrecipe-filter
)
In brief
<$if filter="fruits contain any item of items" variable=fr>
display the name
</$list>
Extra info (pseudo code)
<$let inrecipe-filter="[tag[Singa Salad]]"
fruits = "[[fruitdict]indexes[]]"
>
<$list filter=" is any of inrecipe exist in fruits" >
<<currentTiddler>>
</$list>
</$let>