What is the recommended way to escape curlies within a template so that they don't get interpolated?
For example:
var template = "To access properties, surround the property with double curly braces (e.g.. {{foo}}).";
var result = markupJs.up(template, {});
// Desired output: -> `To access properties, surround the property with double curly braces (e.g.. {{foo}}).`
What is the recommended way to escape curlies within a template so that they don't get interpolated?
For example: