summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnipe <snipe@snipe.net>2014-04-30 06:46:28 -0400
committersnipe <snipe@snipe.net>2014-04-30 06:46:28 -0400
commitb6696bcad2becd357c26397965ec5a6b8285a33a (patch)
treeb5076a97604617ca23b484e7f60cec840101b245
parent076ee98f647046452366777012c69eb7851dbf55 (diff)
downloadgitbook-b6696bcad2becd357c26397965ec5a6b8285a33a.zip
gitbook-b6696bcad2becd357c26397965ec5a6b8285a33a.tar.gz
gitbook-b6696bcad2becd357c26397965ec5a6b8285a33a.tar.bz2
Added quotes for JSON example, per #127
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 9e4c210..a0d725d 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": {}
}
```