diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-06-10 17:45:30 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-06-10 17:45:30 +0200 |
commit | 9c927dcf1377e9f4caa3ed234a9fb5b472ecee50 (patch) | |
tree | d2ca8a49d8d365578bdb4e6506ce1f88e9ce068e /lib/templating/listShortcuts.js | |
parent | 7a08b3f109d104903406a38cfd33aa642d30211f (diff) | |
download | gitbook-9c927dcf1377e9f4caa3ed234a9fb5b472ecee50.zip gitbook-9c927dcf1377e9f4caa3ed234a9fb5b472ecee50.tar.gz gitbook-9c927dcf1377e9f4caa3ed234a9fb5b472ecee50.tar.bz2 |
Fix #1374 and #1360: apply transform of conrefsLoader using a string, not a buffer
Diffstat (limited to 'lib/templating/listShortcuts.js')
-rw-r--r-- | lib/templating/listShortcuts.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/templating/listShortcuts.js b/lib/templating/listShortcuts.js index b5fe793..8d0a64a 100644 --- a/lib/templating/listShortcuts.js +++ b/lib/templating/listShortcuts.js @@ -2,13 +2,13 @@ var Immutable = require('immutable'); var parsers = require('../parsers'); /** - Return a list of all shortcuts that can apply - to a file for a TemplatEngine - - @param {List<TemplateBlock>} engine - @param {String} filePath - @return {List<TemplateShortcut>} -*/ + * Return a list of all shortcuts that can apply + * to a file for a TemplatEngine + * + * @param {List<TemplateBlock>} engine + * @param {String} filePath + * @return {List<TemplateShortcut>} + */ function listShortcuts(blocks, filePath) { var parser = parsers.getForFile(filePath); |