diff options
author | Samy Pessé <samypesse@gmail.com> | 2016-05-02 16:12:07 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2016-12-22 12:32:17 +0100 |
commit | c3a417a9834ba3c25ceb20a3cb650fa0384c60d0 (patch) | |
tree | bdbffac34a15636265e834b9bf0c484054426135 /packages/gitbook-html/lib/page.js | |
parent | 9e88003d7373e2e7efac862494a9a0db4847f617 (diff) | |
download | gitbook-c3a417a9834ba3c25ceb20a3cb650fa0384c60d0.zip gitbook-c3a417a9834ba3c25ceb20a3cb650fa0384c60d0.tar.gz gitbook-c3a417a9834ba3c25ceb20a3cb650fa0384c60d0.tar.bz2 |
Adapt for gitbook v3
Diffstat (limited to 'packages/gitbook-html/lib/page.js')
-rwxr-xr-x | packages/gitbook-html/lib/page.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/gitbook-html/lib/page.js b/packages/gitbook-html/lib/page.js index ae8923e..56d8984 100755 --- a/packages/gitbook-html/lib/page.js +++ b/packages/gitbook-html/lib/page.js @@ -1,7 +1,12 @@ var Q = require('q'); var _ = require('lodash'); -// HTML -> Page +/** + Parse content of a page + + @param {String} html + @return {Object} +*/ function parsePage(html) { return { content: html |