summaryrefslogtreecommitdiffstats
path: root/lib/templating/render.js
blob: 87d5096edb7a0869840997e5435e0428f2015ce5 (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
var Promise = require('../utils/promise');

var replaceShortcuts = require('./replaceShortcuts');

/**
    Render a template

    @param {TemplateEngine} engine
    @param {String} filePath
    @param {String} content
    @param {Object} ctx
    @return {Promise<String>}
*/
function renderTemplate(engine, filePath, content, context) {
    context = context || {};
    var env = engine.toNunjucks();

    content = replaceShortcuts(engine, filePath, content);

    return Promise.nfcall(
        env.renderString.bind(env),
        content,
        context,
        {
            path: filePath
        }
    );
}

module.exports = renderTemplate;