Skip to content

Commit 36c4359

Browse files
committed
restore lib/mustache (separate PR)
1 parent 592b4dc commit 36c4359

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

lib/template-base.js

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,12 @@ POSSIBILITY OF SUCH DAMAGE.
3030
</copyright> */
3131

3232
var Path = require("path");
33+
var Mustache = require("./mustache");
3334
var FS = require("fs");
3435
var Q = require("q");
3536
var qfs = require("q-io/fs");
3637
var os = require("os");
3738

38-
var Mustache = require("mustache");
39-
// We're interpolating inside Javascript and CSS, and so do not want the
40-
// default HTML escaping
41-
Mustache.escape = function (string) {
42-
return string;
43-
};
44-
4539
var MinitError = require("./error").MinitError;
4640

4741
var FILENAME_VARIABLE_START = "__";

0 commit comments

Comments
 (0)