summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSamy Pessé <samypesse@gmail.com>2014-04-30 12:48:28 +0200
committerSamy Pessé <samypesse@gmail.com>2014-04-30 12:48:28 +0200
commit2999d90907c5850baa9deee365aba59022c36029 (patch)
treec43fa2da6da2f3e253ae0c33c13302317380b928 /README.md
parent728c87c52587c4e06b281579da21e7637b11f302 (diff)
parentb6696bcad2becd357c26397965ec5a6b8285a33a (diff)
downloadgitbook-2999d90907c5850baa9deee365aba59022c36029.zip
gitbook-2999d90907c5850baa9deee365aba59022c36029.tar.gz
gitbook-2999d90907c5850baa9deee365aba59022c36029.tar.bz2
Merge pull request #188 from snipe/feature/json-doc
Added quotes for JSON example, per #127
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 7d8dccb..a9f2a00 100644
--- a/README.md
+++ b/README.md
@@ -42,24 +42,24 @@ Here are the options that can be stored in this file:
```
{
// Folders to use for output (caution: it override the value from the command line)
- output: null,
+ "output": null,
// Generator to use for building (caution: it override the value from the command line)
- generator: "site",
+ "generator": "site",
// Book title and description (defaults are extracted from the README)
- title: null,
- description: null,
+ "title": null,
+ "description": null,
// GitHub informations (defaults are extracted using git)
- github: null,
- githubHost: 'https://github.com/',
+ "github": null,
+ "githubHost": "https://github.com/",
// Plugins list, can contain "-name" for removing default plugins
- plugins: [],
+ "plugins": [],
// Global configuration for plugins
- pluginsConfig: {}
+ "pluginsConfig": {}
}
```