As per the subject, I am passing in uri, and the forward slashes come out as the entity #x2f;
IF it is strict escaping, is there a way to turn that off?
From the readme:
All variables are HTML-escaped by default. If you want to render unescaped HTML, use the triple mustache: {{{name}}}. You can also use & to unescape a variable.
@bryanrasmussen As a side note, you can always specify the behavior that Mustache uses to escape things by overriding Mustache.escape
. See this issue for further discussion.
Most helpful comment
From the readme:
All variables are HTML-escaped by default. If you want to render unescaped HTML, use the triple mustache: {{{name}}}. You can also use & to unescape a variable.