I used export tiddler from More dropdown but I have been having problems importing any tiddlers I have exported from one TW to any of my other TW’s.
Tiddler Check Blank 3
<<subsume “fruit”>>
<<subsume “vegetable”>>
<<subsume “meat”>>
<<subsume “poultry”>>
<<subsume “spice”>>
<$list filter="[tag[Recipe]]">
<$set name=“ingredients” filter="[fields[]] -[[title]] -[[tags]] -[[text]] -[[created]] -[[modified]] -[[serves]]">
INGREDIENTS: <$text text={{{ [enlistjoin[, ]] }}}/>
To serve
<$edit-text tiddler="$:/temp/people" tag=“input” focus=“yes” default="" placeholder={{!!serves}} />,
you will need:
<$vars people={{{ [{$:/temp/people}!match[]else{!!serves}] }}}>
<$list filter=<> variable=“ingredient”>
<$vars amount={{{ [getmultiply[1]] }}}>
<$vars units={{{ [getremoveprefix] }}}>
<$text text={{{ [divide{!!serves}multiply] }}}/><> of <>
</$vars>
</$vars>
</$list>
</$vars>
</$set>
</$list>
Tiddler spice
<$list filter="[tag[ingredient]tag[spice]sort[title]]">
<$checkbox field={{!!title}} checked={{!!title}} unchecked="" default=""> {{!!title}}</$checkbox>
</$list>
Tiddler Chinese Five Spice
tagged with ingredient and with spice
I have removed a blockquote from around </vars people …</$vars>