summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md18
1 files changed, 11 insertions, 7 deletions
diff --git a/README.md b/README.md
index 89c0d85..866979a 100644
--- a/README.md
+++ b/README.md
@@ -91,26 +91,26 @@ 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
-GitBook supports generation of books written in multiple languages. Each languages should be a sub-directory with a normal GitBook format, and a file named `LANGS.md` should be present at the root of the repository with the following format:
+GitBook supports building books written in multiple languages. Each language should be a sub-directory following the normal GitBook format, and a file named `LANGS.md` should be present at the root of the repository with the following format:
```
* [English](en/)
@@ -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 `.ignore` files to get a list of files and folders to skip. (The format inside those files, follows the same convention as `.gitignore`)