summaryrefslogtreecommitdiffstats
path: root/packages/gitbook-html/lib/page.js
blob: 25fd637e5c4d2aa0f5b3f2474568356e5e935e89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"use strict";

/**
 * Parse content of a page.
 * @param {String} html
 * @return {Object}
 */
function parsePage(html) {
    return {
        content: html
    };
}

module.exports = parsePage;
//# sourceMappingURL=page.js.map