blob: 27234f22a02e6cb8f551c43fcb6e0955ceb18dfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
var _ = require("lodash");
var Q = require("q");
var nunjucks = require("nunjucks");
var TemplateEngine = function(book) {
this.book = book;
// Nunjucks env
this.env = new nunjucks.Environment(
new nunjucks.FileSystemLoader(book.root),
{
// Escaping is done after by the markdown parser
autoescape: false
}
);
};
// Render a file from the book
TemplateEngine.prototype.renderFile = function(filename) {
var that = this;
return that.book.statFile(filename)
.then(function(stat) {
var context = {
// Variables from book.json
book: that.book.options.variables,
// infos about the file
file: {
path: filename,
mtime: stat.mtime
}
};
return Q.nfcall(that.env.render.bind(that.env), filename, context);
});
};
module.exports = TemplateEngine;
|