summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-html/lib/page.js
blob: 56d8984a2338b86920fb1621dfb753a5eb059b9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
var Q = require('q');
var _ = require('lodash');

/**
    Parse content of a page

    @param {String} html
    @return {Object}
*/
function parsePage(html) {
    return {
        content: html
    };
}

module.exports = parsePage;