Hello All, Appreciate you help regarding my below issue:
Suppose that I've a set of Tiddlers called "Recipes" ( Recipe01, Recipe02,
.....) where each of them has a field called "status"
Where:
{{Recipe01!!status}} = [[This is OK]]
{{Recipe02!!status}} = [[This is OK]]
{{Recipe03!!status}} = [[This is OK]]
{{Recipe04!!status}} = [[This is "Not" OK]]
{{Recipe05!!status}} = [[This is "Not" OK]]
Also, I've a simple Macro to get all Tiddler by "status" :
```
\define getWithStatus(myStatus)
<$list filter="[all[tiddlers]contains:status[$myStatus$]]" />
\end
```
As expected, when I run the below macro command:
<<getWithStatus [[This is OK]]>>
The output is OK, I got :-
Recipe01
Recipe02
Recipe03
BUT, my problem when I run the following :
<<getWithStatus [[This is "Not" OK]]>>
where the output is (the macro content with substitution of parameter) :-
```
<$list filter="[all[tiddlers]contains:status[This is "Not" OK]]" />
```
Thanks in Advance
P.S, I've tried both """_""", and '_' for the parameter :-
<<getWithStatus """This is "Not" OK""">>
<<getWithStatus 'This is "Not" OK'>>
but I got the same output,
--
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 [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/36d94ce8-ef95-4bf9-919d-189998c11c37n%40googlegroups.com.
Recipe03.json
Description: application/json
Recipe05.json
Description: application/json
Recipe01.json
Description: application/json
Macro & Outputs.json
Description: application/json
Recipe02.json
Description: application/json
Recipe04.json
Description: application/json

