Dear community, I'm trying to pass a rich text content, effectively HTML text, between flows. First flow gets the content as a formatted text, puts it into a variable and then uses this variable to build a JSON that is then POSTed to another flow via HTTP call. The pseudo code would look like this: set varMyRichText = links > set varMyJSON = { "RichTextVar" : "variables('varMyRichText')"} Now when I look at the content of the varMyJSON it gets all confused because it messes up the quotes found inside original rich text like those that are part of hyperlinks, with the quotes that come around "value" in the JSON. I could probably map all the special chars to their ascii codes in an set of extra steps, but is there any better way to just pass the "rich text" content around? Thank you,