From 0fdd31dc39fab120a73c78e86e38f4cd79ab254d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Mon, 31 Mar 2014 12:54:53 -0700 Subject: [PATCH] Fix link for watcher and stargazers --- templates/includes/book/header.html | 4 ++-- test.js | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 test.js 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