I want to put some conditional formatting inside a table in my Power Automate. Right now, I am just testing passing formatting inside the Map based on some other posts I read.
However, instead of passing the HTML it is converting them to the markups codes.
When I look at the output code of that select function it looks fine:
"All Pass": "<div style='background-color: green'>Yes</div>",
But then I put it into an HTML table:
And instead it is putting this in table:
<td><div style='background-color: green'>Yes</div></td>
Is there a way to get the HTML to stick? Do I need to escape it somehow?