I'm trying to load text from an external source (txt file, database, etc) that ALREADY has Power Automate identifiers in it and I want them interpolated, but they're just coming out literal.
Example target string:
Lorem ipsum @{variables('varMap')?['dolor']} sit amet, consectetur adipiscing elit.
Where varMap is an Object variable that contains { "dolor": "D0L0R" }
This works as expected if I put the target string in a Compose following the Object variable init. But if I load that text from external source, then put its output in the Compose then the variable/dynamic text is not interpolated. Is there a way to force this to happen, like eval() in many scripting languages. Either another action or function?