summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2015-01-24 11:57:21 +0100
committerSamy Pessé <samypesse@gmail.com>2015-01-24 11:57:21 +0100
commitfd98746c2b14985b914678f39361b31028437d5b (patch)
treee7e87f00b404490b54ca9be9f749598653bb1853 /lib
parent2efd234824c8ec0a87bd20f807867b16cf169ecc (diff)
downloadgitbook-fd98746c2b14985b914678f39361b31028437d5b.zip
gitbook-fd98746c2b14985b914678f39361b31028437d5b.tar.gz
gitbook-fd98746c2b14985b914678f39361b31028437d5b.tar.bz2
Update gitbook-parsers and improve summary tests
Diffstat (limited to 'lib')
-rw-r--r--lib/book.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/book.js b/lib/book.js
index c81d38f..bde30da 100644
--- a/lib/book.js
+++ b/lib/book.js
@@ -319,7 +319,10 @@ Book.prototype.parseSummary = function() {
that.logDebug("summary located at", summary.path);
return that.template.renderFile(summary.path)
.then(function(content) {
- return summary.parser.summary(content, that.readmeFile);
+ return summary.parser.summary(content, {
+ entryPoint: that.readmeFile,
+ files: that.files
+ });
});
})
.then(function(summary) {