I have a macro where I use the $text widget where the "text" attribute is a filtered transclusion (i.e. {{{ [myfilter] }}} ).
I've noticed that occasionally [myfilter] produces something containing markup, which obviously gets rendered as plain text.
E.g. <$text text={{{ [myfilter] }}}/> might output A __sentence__ with ''formatting''.
Is there some equivalent of the $text widget that will output the text with the formatting applied?
So for the above example I would instead get: A sentence with formatting.
Maybe this is a basic question but I'm not sure what the simplest approach would be?