-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
使用gitbook发布翻译的结果到github page上。注意发布上去的是未完成版
- Loading branch information
1 parent
97cdf96
commit f1b3bf7
Showing
5 changed files
with
56 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bin/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/bin/sh | ||
|
||
gitbook build ./zh --output='./bin' --config ./zh/book.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
// Folders to use for output | ||
// Caution: it overrides the value from the command line | ||
// It's not advised this option in the book.json | ||
"output": null, | ||
|
||
// Generator to use for building | ||
// Caution: it overrides the value from the command line | ||
// It's not advised this option in the book.json | ||
"generator": "site", | ||
|
||
// Book title and description (defaults are extracted from the README) | ||
"title": "Flask之旅", | ||
"description": "关于Flask的最佳实践", | ||
|
||
// For ebook format, the extension to use for generation (default is detected from output extension) | ||
// "epub", "pdf", "mobi" | ||
// Caution: it overrides the value from the command line | ||
// It's not advised this option in the book.json | ||
"extension": null, | ||
|
||
// Plugins list, can contain "-name" for removing default plugins | ||
"plugins": [], | ||
|
||
// Global configuration for plugins | ||
"pluginsConfig": { | ||
"fontSettings": { | ||
"theme": "sepia", | ||
"family": "sans", | ||
"size": 2 | ||
} | ||
}, | ||
|
||
// Links in template (null: default, false: remove, string: new value) | ||
"links": { | ||
// Sharing links | ||
"sharing": { | ||
"google": null, | ||
"facebook": null, | ||
"twitter": null, | ||
"weibo": null, | ||
"all": null | ||
} | ||
} | ||
} |