From e5ffe94f00175a9e81cc71f5c6dd39efad23dcf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samy=20Pess=C3=A9?= Date: Tue, 24 Feb 2015 15:43:06 +0100 Subject: [PATCH] GitBook Example --- .gitignore | 16 ++++++++++++++++ README.md | 4 ++++ SUMMARY.md | 3 +++ chapter1.md | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 SUMMARY.md create mode 100644 chapter1.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1a366fb --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Node rules: +## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +## Dependency directory +## Commenting this out is preferred by some people, see +## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git +node_modules + +# Book build output +_book + +# eBook build output +*.epub +*.mobi +*.pdf \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d2145ed --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +My Awesome Book +======= + +This file file serves as your book's preface, a great place to describe your book's content and ideas. diff --git a/SUMMARY.md b/SUMMARY.md new file mode 100644 index 0000000..84616cd --- /dev/null +++ b/SUMMARY.md @@ -0,0 +1,3 @@ +# Summary + +* [First Chapter](chapter1.md) diff --git a/chapter1.md b/chapter1.md new file mode 100644 index 0000000..c0e22c6 --- /dev/null +++ b/chapter1.md @@ -0,0 +1,3 @@ +# First Chapter + +GitBook allows you to organize your book into chapters, each chapter is stored in a separate file like this one.