module.exports = { website: { assets: "./book", js: [ "toggle.js" ], css: [ "toggle.css" ], html: { "html:start": function() { return "" }, "html:end": function() { return "" }, "head:start": "", "head:end": "", "body:start": "", "body:end": "" } }, hooks: { // For all the hooks, this represent the current generator // This is called before the book is generated "init": function() { //console.log("init!"); }, // This is called after the book generation "finish": function() { //console.log("finish!"); } } };