We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 592b4dc commit 36c4359Copy full SHA for 36c4359
lib/template-base.js
@@ -30,18 +30,12 @@ POSSIBILITY OF SUCH DAMAGE.
30
</copyright> */
31
32
var Path = require("path");
33
+var Mustache = require("./mustache");
34
var FS = require("fs");
35
var Q = require("q");
36
var qfs = require("q-io/fs");
37
var os = require("os");
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
-
45
var MinitError = require("./error").MinitError;
46
47
var FILENAME_VARIABLE_START = "__";
0 commit comments