summaryrefslogtreecommitdiffstats
path: root/test/node_modules/gitbook-plugin-test-deprecated/index.js
blob: 2a77ce3a2763320ba01edae252d96bf65ca1f8db (plain)
1
2
3
4
5
6
7
8
module.exports = {
    hooks: {
        page: function(page) {
            page.sections[0].content = 'Hello (sections) ' + page.content;
            return page;
        }
    }
};