hi all,
i have a question about how transcluding an empty field. i am making a macro that needs to give the same result in these two cases:
- the parameter is empty (like
<<mymacro>>
) - the parameter transcludes a field which is empty (like
<<mymacro {{!!blankField}}>>
).
#1 is easy ([<param>else[result]]
), and something like [{!!blankfield}is[blank]then[result]]
would work for #2, but i need to transclude the field (as opposed to passing its name to the macro as a parameter) so what should i do?
i guess my root question is: how do i use a filter to match the value given by a transcluded empty field?