forked from zhangjikai/gitbook-use
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e5c274e
commit 6d79c73
Showing
20 changed files
with
680 additions
and
242 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,5 @@ | ||
## Git | ||
分散式版本控制软件 | ||
|
||
## Markdown | ||
Aaron Swartz 跟John Gruber共同设计的排版语言 |
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 |
---|---|---|
@@ -1,9 +1,12 @@ | ||
# Summary | ||
|
||
* [前言](README.md) | ||
## 基本使用 | ||
* [前言](introduction.md) | ||
* [安装](installation.md) | ||
* [命令](commands.md) | ||
* [目录结构](structure.md) | ||
* [配置](settings.md) | ||
|
||
## 扩展 | ||
* [插件](plugins.md) | ||
* [主题](themes.md) | ||
* [bookjson](bookjson.md) | ||
|
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 @@ | ||
|
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,18 @@ | ||
{% sample lang="js" %} | ||
这里演示 JavaScript 如何输出信息到控制台 | ||
|
||
```js | ||
console.log('Hello World'); | ||
``` | ||
|
||
{% sample lang="java" %} | ||
这里演示 Java 如何输出信息到控制台 | ||
|
||
```java | ||
System.out.println("Hello World"); | ||
``` | ||
|
||
{% common %} | ||
这里是 JavaScript 和 Java 共同的信息 | ||
|
||
{% endmethod %} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,91 +1,134 @@ | ||
{ | ||
"title" : "Gibook Use", | ||
"description" : "记录Gitbook的配置和一些插件的使用", | ||
"author" : "zhangjikai", | ||
"generator": "site", | ||
"language" : "zh-hans", | ||
"gitbook" : "2.6.4", | ||
"links" : { | ||
"sidebar" : { | ||
"Home" : "https://zhangjikai.com" | ||
"title": "Gibook Use", | ||
"description": "记录Gitbook的配置和一些插件的使用", | ||
"author": "zhangjikai", | ||
"output.name": "site", | ||
"language": "zh-hans", | ||
"gitbook": "3.2.2", | ||
"root": ".", | ||
"structure" : { | ||
"readme": "introduction.md" | ||
}, | ||
"links": { | ||
"sidebar": { | ||
"Home": "http://www.zhangjikai.com" | ||
} | ||
}, | ||
"plugins": [ | ||
"disqus", | ||
"plugins": [ | ||
"-lunr", | ||
"-search", | ||
"[email protected]", | ||
"[email protected]", | ||
"github", | ||
"ace", | ||
"emphasize", | ||
"katex", | ||
"anchors", | ||
"include-codeblock", | ||
"mermaid", | ||
"tbfed-pagefooter", | ||
"sectionx", | ||
"expandable-chapters", | ||
"codeblock-filename", | ||
"baidu", | ||
"[email protected]", | ||
"donate", | ||
"local-video", | ||
"toc", | ||
"edit-link", | ||
"[email protected]" | ||
|
||
"-highlight", | ||
"search-plus@^0.0.11", | ||
"simple-page-toc@^0.1.1", | ||
"github@^2.0.0", | ||
"[email protected]", | ||
"edit-link@^2.0.2", | ||
"disqus@^0.1.0", | ||
"prism@^2.1.0", | ||
"prism-themes@^0.0.2", | ||
"advanced-emoji@^0.2.1", | ||
"anchors@^0.7.1", | ||
"include-codeblock@^3.0.2", | ||
"ace@^0.3.2", | ||
"emphasize@^1.1.0", | ||
"katex@^1.1.3", | ||
"splitter@^0.0.8", | ||
"mermaid@^0.0.9", | ||
"tbfed-pagefooter@^0.0.1", | ||
"expandable-chapters-small@^0.1.7", | ||
"sectionx@^3.1.0", | ||
"baidu@^0.1.0", | ||
"donate@^1.0.2", | ||
"local-video@^1.0.1", | ||
"sitemap-general@^0.1.1", | ||
"[email protected]", | ||
"favicon@^0.0.2", | ||
"todo@^0.1.3" | ||
], | ||
"pluginsConfig": { | ||
"theme-default": { | ||
"showLevel": true | ||
}, | ||
"disqus": { | ||
"shortName": "gitbookuse" | ||
}, | ||
"prism": { | ||
"css": [ | ||
"prism-themes/themes/prism-base16-ateliersulphurpool.light.css" | ||
] | ||
}, | ||
"github": { | ||
"url": "https://github.com/zhangjikai/gitbook-use" | ||
}, | ||
"search-pro": { | ||
"cutWordLib": "nodejieba", | ||
"defineWord": ["gitbook-use"] | ||
}, | ||
|
||
"github-buttons": { | ||
"repo": "zhangjikai/gitbook-use", | ||
"types": [ | ||
"star" | ||
], | ||
"size": "small" | ||
}, | ||
"include-codeblock": { | ||
"template": "ace", | ||
"unindent": true, | ||
"edit": true | ||
|
||
}, | ||
"sharing": { | ||
"weibo": true, | ||
"facebook": true, | ||
"twitter": true, | ||
"google": false, | ||
"instapaper": false, | ||
"vk": false, | ||
"vk": false, | ||
"all": [ | ||
"facebook", "google", "twitter", | ||
"weibo", "instapaper" | ||
"facebook", | ||
"google", | ||
"twitter", | ||
"weibo", | ||
"instapaper" | ||
] | ||
}, | ||
|
||
"tbfed-pagefooter": { | ||
"copyright":"Copyright © zhangjikai.com 2017", | ||
"copyright": "Copyright © zhangjikai.com 2017", | ||
"modify_label": "该文件修订时间:", | ||
"modify_format": "YYYY-MM-DD HH:mm:ss" | ||
}, | ||
|
||
"baidu": { | ||
"token" : "ff100361cdce95dd4c8fb96b4009f7bc" | ||
"token": "ff100361cdce95dd4c8fb96b4009f7bc" | ||
}, | ||
"sitemap": { | ||
"hostname": "https://gitbook.zhangjikai.com" | ||
}, | ||
|
||
"donate": { | ||
"wechat": "https://zhangjikai.com/resource/weixin.png", | ||
"alipay": "https://zhangjikai.com/resource/alipay.png", | ||
"title": "", | ||
"button": "赏", | ||
"alipayText": "支付宝打赏", | ||
"wechatText": "微信打赏" | ||
"wechat": "https://zhangjikai.com/resource/weixin.png", | ||
"alipay": "https://zhangjikai.com/resource/alipay.png", | ||
"title": "", | ||
"button": "赏", | ||
"alipayText": "支付宝打赏", | ||
"wechatText": "微信打赏" | ||
}, | ||
"simple-page-toc": { | ||
"maxDepth": 3, | ||
"skipFirstH1": true | ||
}, | ||
"edit-link": { | ||
"base": "https://github.com/zhangjikai/gitbook-use/edit/master", | ||
"label": "Edit This Page" | ||
}, | ||
|
||
"edit-link": { | ||
"base": "https://github.com/zhangjikai/gitbook-use/edit/master", | ||
"label": "Edit This Page" | ||
} | ||
|
||
"sitemap-general": { | ||
"prefix": "http://gitbook.zhangjikai.com" | ||
}, | ||
|
||
"anchor-navigation-ex": { | ||
"isRewritePageTitle": false, | ||
"tocLevel1Icon":"fa fa-hand-o-right", | ||
"tocLevel2Icon":"fa fa-hand-o-right", | ||
"tocLevel3Icon":"fa fa-hand-o-right" | ||
}, | ||
"sectionx": { | ||
"tag": "b" | ||
}, | ||
"favicon":{ | ||
"shortcut": "favicon.ico", | ||
"bookmark": "favicon.ico" | ||
} | ||
|
||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
## book.json配置文件 | ||
# book.json配置文件 | ||
|
||
<!--email_off--> | ||
[import](book.json) | ||
<!--/email_off--> | ||
<!--/email_off--> |
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
Binary file not shown.
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,11 @@ | ||
# 前言 | ||
主要记录GitBook的安装配置以及一些插件信息, 下面是GitBook的一些资源 | ||
|
||
* [GitBook主页](https://www.gitbook.com/) | ||
* [Github地址](https://github.com/GitbookIO/) | ||
* [GitBook编辑器](https://www.gitbook.com/editor/osx) | ||
* [GitBook Toolchain Documentation](http://toolchain.gitbook.com/) | ||
* [GitBook Documentation](http://help.gitbook.com/) | ||
|
||
--- | ||
> 如若转载请标明出处. |
Oops, something went wrong.