mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-21 01:53:26 +00:00
16 lines
206 B
JavaScript
16 lines
206 B
JavaScript
|
|
|
|
/**
|
|
Apply a list of operations to a page and
|
|
output the new page.
|
|
|
|
@param {Page}
|
|
@param {List<Transformation>}
|
|
*/
|
|
function modifyHTML(page, operations) {
|
|
|
|
}
|
|
|
|
|
|
module.exports = modifyHTML;
|