I am using Ace Editor (in React-Ace) to allow to insert programming snippets on my platform.
What i am trying to do right now it to had one work, but camouflaged so that i do not expose some internal information.
For example i want to append $[internal_flow_vars\["0f912efd-a2ab-46be-b908-0a6201486a0d\"].passageCount]
but i do not want to show the uuid, i just want to show ${passageCount}
The text would look like (user sees)
Hello its my ${passageCount} turn
But then the script generated would need to be (machine sees)
Hello its my $[internal_flow_vars\["0f912efd-a2ab-46be-b908-0a6201486a0d\"].passageCount] turn
Thank you for your time