summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-html/lib/page.js
diff options
context:
space:
mode:
Diffstat (limited to 'packages/gitbook-html/lib/page.js')
-rwxr-xr-xpackages/gitbook-html/lib/page.js6
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;