Then in another tiddler I typed your tiddlerB content:
<$list filter="[[tiddlerA]get[text]jsonget[steps]]">
<<currentTiddler>> # <- would expect to see the raw string
</$list>
The result was:
# Boil water # Add # <- would expect to see the raw string
There are two issues: the fact that the # markers are not interpreted as a numbered list is because the text is parsed in inline mode. This can be fixed by removing the text after the macro call:
Hi @jeremyruston thank you for taking the time, I really appreciate attention from BDFL
I tried a few different constructions and it seems that for some reason the filter would wrap the result in another pair of [] which causes jsonget[steps] to not return anything because the data passed to it looks like this: [{"ingredients":..., "steps":...}].
I don’t know if I messed something up when setting up my directory structure but I went ahead and rebuild the wiki from the same commit and now it works like your example. Guess it was too late for me yesterday…