diff --git a/templates/includes/book/header.html b/templates/includes/book/header.html index 7cd16c9f6..c1b6518eb 100644 --- a/templates/includes/book/header.html +++ b/templates/includes/book/header.html @@ -4,8 +4,8 @@ Summary - Star (-) - Watch (-) + Star (-) + Watch (-) diff --git a/test.js b/test.js new file mode 100644 index 000000000..c5c5d2f65 --- /dev/null +++ b/test.js @@ -0,0 +1,15 @@ +var path = require("path"); +var generate = require("./lib/generate"); + +generate.folder( + path.resolve(__dirname, "../jsbook"), + path.resolve("../output"), + { + title: "Javascript", + github: "GitbookIO/javascript" + } +).then(function(output) { + console.log(output) +}, function(err) { + console.log(err.stack, err); +}) \ No newline at end of file