diff options
Diffstat (limited to 'packages/gitbook-html/lib/page.js')
-rwxr-xr-x | packages/gitbook-html/lib/page.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/gitbook-html/lib/page.js b/packages/gitbook-html/lib/page.js index e687050..6f056fc 100755 --- a/packages/gitbook-html/lib/page.js +++ b/packages/gitbook-html/lib/page.js @@ -2,8 +2,10 @@ var Q = require('q'); var _ = require('lodash'); // HTML -> HTML -function parsePage(src) { - return src; +function parsePage(html) { + return { + content: html + }; } module.exports = parsePage; |