Example with escape set to false: https://jsfiddle.net/djhvscf/dsn41bt0/3/ Example with escape set to true: https://jsfiddle.net/djhvscf/dsn41bt0/4/
@@ -1220,7 +1220,9 @@
this.options.customSearch.apply(this, [this.searchText]);
return;
}
- var s = this.searchText && this.searchText.toLowerCase();
+
+ var s = !this.options.escape ? this.searchText && escapeHTML(this.searchText).toLowerCase()
+ : this.searchText && this.searchText.toLowerCase();
var f = $.isEmptyObject(this.filterColumns) ? null : this.filterColumns;
// Check filter