2015-08-03 20:23:32 +08:00
|
|
|
# Configuration
|
|
|
|
|
2015-08-06 21:24:34 +08:00
|
|
|
You can configure the parameters for your book in the ***book.json*** file.
|
2015-08-03 20:23:32 +08:00
|
|
|
|
2015-08-06 21:24:34 +08:00
|
|
|
Here is an example of what a ***book.json*** file might look like:
|
2015-08-03 20:23:32 +08:00
|
|
|
|
2015-08-06 00:28:59 +08:00
|
|
|
```json
|
2015-08-03 20:23:32 +08:00
|
|
|
{
|
|
|
|
"title": "Example book",
|
|
|
|
"author": "Name",
|
2016-02-25 22:01:16 +08:00
|
|
|
"description": "The example book covers examples.",
|
2015-08-06 21:24:34 +08:00
|
|
|
"dest": "output/my-book"
|
2015-08-03 20:23:32 +08:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
#### Supported variables
|
|
|
|
|
2016-12-07 22:22:32 +08:00
|
|
|
If relative paths are given, they will be relative to the book's root, i.e. the
|
|
|
|
parent directory of the source directory.
|
|
|
|
|
|
|
|
- **title:** The title of the book.
|
|
|
|
- **author:** The author of the book.
|
|
|
|
- **description:** The description, which is added as meta in the html head of each page.
|
|
|
|
- **src:** The path to the book's source files (chapters in Markdown, SUMMARY.md, etc.). Defaults to `root/src`.
|
|
|
|
- **dest:** The path to the directory where you want your book to be rendered. Defaults to `root/book`.
|
|
|
|
- **theme_path:** The path to a custom theme directory. Defaults to `root/theme`.
|
2015-08-06 21:24:34 +08:00
|
|
|
|
|
|
|
***note:*** *the supported configurable parameters are scarce at the moment, but more will be added in the future*
|