Skip to content
Umakant Patil edited this page Oct 13, 2017 · 1 revision

jSmart.prototype.escapeHtml

Escape HTML markup in template variables. By default is false (don't escape HTML).

jSmart.prototype.escapeHtml = true;  //set global for all jSmart instances

var t = new jSmart('{$bold}', { escapeHtml: true }); //... or set for this instance only, overrides jSmart.prototype.escapeHtml

t.fetch({bold: '<b>test</b>'});

Output:

&lt;b&gt;test&lt;/b&gt;

Older versions of jSmart below 3.0.0. please read (https://github.com/umakantp/jsmart/wiki/escape_html)[https://github.com/umakantp/jsmart/wiki/escape_html]

Clone this wiki locally