summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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": {}
}
```