summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorAaron O'Mullan <aaron.omullan@friendco.de>2014-04-06 15:21:57 -0700
committerAaron O'Mullan <aaron.omullan@friendco.de>2014-04-06 15:21:57 -0700
commitc8f83e26848d98e5247c1a2b538fa5fec4e43186 (patch)
treea4c2c42641fad69186293110ea5829c06c7ca7b8 /README.md
parentaa7835e913a7b166c459bb44543db23d2aedd2c2 (diff)
downloadgitbook-c8f83e26848d98e5247c1a2b538fa5fec4e43186.zip
gitbook-c8f83e26848d98e5247c1a2b538fa5fec4e43186.tar.gz
gitbook-c8f83e26848d98e5247c1a2b538fa5fec4e43186.tar.bz2
Document ignores in README, fixes #37
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 10 insertions, 6 deletions
diff --git a/README.md b/README.md
index 89c0d85..9d44628 100644
--- a/README.md
+++ b/README.md
@@ -91,21 +91,21 @@ An exercise is defined by 4 simple parts:
Exercises need to start and finish with a separation bar (```---``` or ```***```). It should contain 3 code elements (**base**, **solution** and **validation**).
---
-
+
Define a variable `x` equal to 10.
-
+
```js
- var x =
+ var x =
```
-
+
```js
var x = 10;
```
-
+
```js
assert(x == 10);
```
-
+
---
#### Multi-Languages
@@ -119,3 +119,7 @@ GitBook supports generation of books written in multiple languages. Each languag
```
You can see a complete example with the [Learn Git](https://github.com/GitbookIO/git) book.
+
+#### Ignoring files & folders
+
+GitBook will read the `.gitignore`, `.bookignore` and `.gitignore` files to get a list of files and folders to skip. (The format inside those files, follows the same convention as `.gitignore`)