diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-04-25 12:24:59 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-04-25 12:24:59 +0200 |
commit | 244fb0ca28f29ac429f58e0e885d21cc6c40beba (patch) | |
tree | 0170dd48a50ad51b9ca949e3c9afca506bbe15e8 /lib/templating/replaceShortcuts.js | |
parent | f6e123f1ed36019a2ec5da1f97b27d22352b689a (diff) | |
download | gitbook-244fb0ca28f29ac429f58e0e885d21cc6c40beba.zip gitbook-244fb0ca28f29ac429f58e0e885d21cc6c40beba.tar.gz gitbook-244fb0ca28f29ac429f58e0e885d21cc6c40beba.tar.bz2 |
Replace shortcuts in templating
Diffstat (limited to 'lib/templating/replaceShortcuts.js')
-rw-r--r-- | lib/templating/replaceShortcuts.js | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/lib/templating/replaceShortcuts.js b/lib/templating/replaceShortcuts.js new file mode 100644 index 0000000..f6a51cb --- /dev/null +++ b/lib/templating/replaceShortcuts.js @@ -0,0 +1,37 @@ +var escapeStringRegexp = require('escape-string-regexp'); +var listShortcuts = require('./listShortcuts'); + +/* + Apply a shortcut of block to a template + @param {String} content + @param {Shortcut} shortcut + @return {String} +*/ +function applyShortcut(content, shortcut) { + var tags = shortcut.get('tag'); + var start = shortcut.get('start'); + var end = shortcut.get('end'); + + var regex = new RegExp( + escapeStringRegexp(start) + '([\\s\\S]*?[^\\$])' + escapeStringRegexp(end), + 'g' + ); + return content.replace(regex, function(all, match) { + return '{% ' + tags.start + ' %}' + match + '{% ' + tags.end + ' %}'; + }); +} + +/** + Replace shortcuts from blocks in a string + + @param {TemplateEngine} engine + @param {String} filePath + @param {String} content + @return {String} +*/ +function replaceShortcuts(engine, filePath, content) { + var shortcuts = listShortcuts(engine, filePath); + return shortcuts.reduce(applyShortcut, content); +} + +module.exports = replaceShortcuts; |