Using Form Composer we are attempting to use Template Literals as part of our code. But the expressions are being removed by Adobe Target's servers and never make it to the DOM.
Is there a way to tell Adobe Target not to make any server side substitutions?
Code we have got in a HTML offer, also tried to use backslashes to stop adobe server substitutions;
<script>
let myText = 'The Text!';
let theData = {
moreText: 'This is more text!'
};
console.log(`\${myText}`);
console.log(`${myText}`);
console.log(`\\${myText}`);
console.log(`${theData.moreText}`);
console.log(`${theData.moreText}`);
console.log(`\\${theData.moreText}`);
console.log(`${theData['moreText']}`);
console.log(`${theData['moreText']}`);
console.log(`\\${theData['moreText']}`);
</script>
Screenshot of what gets injected into the HEAD by Adobe Target when preview link is loaded;
