diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-09-05 11:04:18 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-09-05 11:04:18 +0200 |
commit | a14ca3e268e95a7eab59fb205b41da7331d57631 (patch) | |
tree | 9c84b2cbd561345335fca3e26af961b2ea23d8ec /lib/templating/render.js | |
parent | 9c071dade573aa6990878006f83c89b6065a1395 (diff) | |
download | gitbook-a14ca3e268e95a7eab59fb205b41da7331d57631.zip gitbook-a14ca3e268e95a7eab59fb205b41da7331d57631.tar.gz gitbook-a14ca3e268e95a7eab59fb205b41da7331d57631.tar.bz2 |
Switch to lerna
Diffstat (limited to 'lib/templating/render.js')
-rw-r--r-- | lib/templating/render.js | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/lib/templating/render.js b/lib/templating/render.js deleted file mode 100644 index 1a8b0cd..0000000 --- a/lib/templating/render.js +++ /dev/null @@ -1,44 +0,0 @@ -var Promise = require('../utils/promise'); -var timing = require('../utils/timing'); -var TemplateOutput = require('../models/templateOutput'); -var replaceShortcuts = require('./replaceShortcuts'); - -/** - * Render a template - * - * @param {TemplateEngine} engine - * @param {String} filePath: absolute path for the loader - * @param {String} content - * @param {Object} context (optional) - * @return {Promise<TemplateOutput>} - */ -function renderTemplate(engine, filePath, content, context) { - context = context || {}; - - // Mutable objects to contains all blocks requiring post-processing - var blocks = {}; - - // Create nunjucks environment - var env = engine.toNunjucks(blocks); - - // Replace shortcuts from plugin's blocks - content = replaceShortcuts(engine.getBlocks(), filePath, content); - - return timing.measure( - 'template.render', - - Promise.nfcall( - env.renderString.bind(env), - content, - context, - { - path: filePath - } - ) - .then(function(content) { - return TemplateOutput.create(content, blocks); - }) - ); -} - -module.exports = renderTemplate; |