summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-html/src/page.js
blob: c4982b52900206da33e23320e3af4b40a60ba478 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Parse content of a page.
 * @param {String} html
 * @return {Object}
 */
function parsePage(html) {
    return {
        content: html
    };
}

module.exports = parsePage;