summaryrefslogtreecommitdiffstats
path: root/lib/templating
diff options
context:
space:
mode:
Diffstat (limited to 'lib/templating')
-rw-r--r--lib/templating/blocks.js11
-rw-r--r--lib/templating/index.js28
-rw-r--r--lib/templating/loader.js0
3 files changed, 39 insertions, 0 deletions
diff --git a/lib/templating/blocks.js b/lib/templating/blocks.js
new file mode 100644
index 0000000..92097a7
--- /dev/null
+++ b/lib/templating/blocks.js
@@ -0,0 +1,11 @@
+var _ = require('lodash');
+
+module.exports = {
+ // Return non-parsed html
+ // since blocks are by default non-parsable, a simple identity method works fine
+ html: _.identity,
+
+ // Highlight a code block
+ // This block can be extent by plugins
+ code: _.identity
+};
diff --git a/lib/templating/index.js b/lib/templating/index.js
new file mode 100644
index 0000000..1031bdb
--- /dev/null
+++ b/lib/templating/index.js
@@ -0,0 +1,28 @@
+var nunjucks = require('nunjucks');
+
+function TemplatingEngine(book) {
+ this.book = book;
+ this.log = book.log;
+
+
+ this.nunjucks = new nunjucks.Environment(
+ this.loader,
+ {
+ // Escaping is done after by the asciidoc/markdown parser
+ autoescape: false,
+
+ // Syntax
+ tags: {
+ blockStart: '{%',
+ blockEnd: '%}',
+ variableStart: '{{',
+ variableEnd: '}}',
+ commentStart: '{###',
+ commentEnd: '###}'
+ }
+ }
+ );
+}
+
+
+module.exports = TemplatingEngine;
diff --git a/lib/templating/loader.js b/lib/templating/loader.js
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/lib/templating/loader.js