mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 23:55:20 +00:00
9 lines
182 B
JavaScript
9 lines
182 B
JavaScript
module.exports = {
|
|
hooks: {
|
|
page: function(page) {
|
|
page.sections[0].content = 'Hello (sections) ' + page.content;
|
|
return page;
|
|
}
|
|
}
|
|
};
|