Skip to content

Commit af823db

Browse files
committed
更新整理目录
1 parent c3a18e8 commit af823db

21 files changed

+945
-50
lines changed

Diff for: GLOSSARY.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
```
2+
## Term
3+
Definition for this term
4+
5+
## Another term
6+
With it's definition, this can contain bold text
7+
and all other kinds of inline markup ...
8+
```
9+

Diff for: Introduction.md

-11
This file was deleted.

Diff for: SUMMARY.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# Summary
22

3-
* [译者](README.md)
4-
* [前言](book/01-前言/00-README.md)
5-
* [目标](book/01-前言/00-目标.md)
6-
* [语言设计错误](book/01-前言/01-语言设计错误.md)
7-
* [测试用例](book/01-前言/02-测试用例.md)
8-
* [名词](book/01-前言/03-名词.md)
9-
* [关于Andriod程序员](book/01-前言/04-关于Andriod程序员.md)
10-
* [关于电子版书籍](book/01-前言/05-关于电子版书籍.md)
11-
* [后记](book/01-前言/05-后记.md)
12-
* [鸣谢](book/01-前言/06-鸣谢.md)
13-
* [其他](book/01-前言/07-其他.md)
14-
* [介绍](book/02-介绍/00-README.md)
15-
* [前提条件](book/02-介绍/01-前提条件.md)
16-
* [JDK文档](book/02-介绍/02-JDK文档.md)
3+
* [Introduction](README.md)
4+
* [前言](book/01-Preface/00-README.md)
5+
* [目标](book/01-Preface/01-Preface.md#Goals)
6+
* [语言设计错误](book/01-Preface/01-Preface.md#Language-Design-Errors)
7+
* [测试用例](book/01-Preface/01-Preface.md#Tested-Examples)
8+
* [名词](book/01-Preface/01-Preface.md#Popularity)
9+
* [关于Andriod程序员](book/01-Preface/01-Preface.md#Android-Programmers)
10+
* [关于电子版书籍](book/01-Preface/01-Preface.md#This-is-Only-an-eBook)
11+
* [后记](book/01-Preface/01-Preface.md#Colophon)
12+
* [鸣谢](book/01-Preface/01-Preface.md#Thanks)
13+
* [其他](book/01-Preface/01-Preface.md#Dedication)
14+
* [介绍](book/02-Introduction/00-README.md)
15+
* [前提条件](book/02-Introduction/01-Prerequisites.md)
16+
* [JDK文档](book/02-Introduction/02-Documentation.md)
1717

Diff for: book.json

+31-7
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,28 @@
1212
"epub": "styles/epub.css"
1313
},
1414
"structure": {
15-
"readme": "Introduction.md"
15+
"readme": "README.md"
1616
},
1717
"links": {
1818
"sidebar": {
19-
"博客园": "https://www.cnblogs.com/LingCoder/"
19+
"个人博客": "https://www.lingcoder.com"
2020
}
2121
},
2222
"plugins": [
2323
"-sharing",
24+
"-fontsettings",
2425
"splitter",
2526
"expandable-chapters-small",
2627
"anchors",
2728
"-search",
29+
"edit-link",
2830
"search-pro",
2931
"github",
32+
"emphasize",
33+
"katex",
34+
"donate",
35+
"mermaid-gb3",
36+
"advanced-emoji",
3037
"include-codeblock",
3138
"github-buttons",
3239
"sharing-plus",
@@ -40,24 +47,41 @@
4047
"github-buttons": {
4148
"buttons": [{
4249
"user": "lingcoder",
43-
"repo": "onjava8",
44-
"type": "star",
50+
"repo": "OnJava8",
51+
"types": [
52+
"star",
53+
"watch",
54+
"fork"
55+
],
4556
"size": "small",
4657
"count": true
4758
}]
59+
},
60+
"edit-link": {
61+
"base": "https://github.com/lingcoder/OnJava8/edit/master",
62+
"label": "Edit This Page"
63+
},
64+
"donate": {
65+
"wechat": "./images/weixin.png",
66+
"alipay": "./images/alipay.png",
67+
"title": "",
68+
"button": "",
69+
"alipayText": "支付宝打赏",
70+
"wechatText": "微信打赏"
4871
},
4972
"sharing": {
50-
"douban": true,
73+
"douban": false,
5174
"facebook": false,
52-
"google": true,
75+
"google": false,
5376
"hatenaBookmark": false,
5477
"instapaper": false,
5578
"line": false,
5679
"linkedin": false,
5780
"messenger": false,
5881
"pocket": false,
5982
"qq": true,
60-
"qzone": true,
83+
"wechat":true,
84+
"qzone": false,
6185
"stumbleupon": false,
6286
"twitter": true,
6387
"viber": false,
File renamed without changes.
File renamed without changes.

Diff for: book/01-前言/01-语言设计错误.md

-2
This file was deleted.

Diff for: book/01-前言/02-测试用例.md

-2
This file was deleted.

Diff for: book/01-前言/03-名词.md

-2
This file was deleted.

Diff for: book/01-前言/04-关于Andriod程序员.md

-2
This file was deleted.

Diff for: book/01-前言/05-关于电子版书籍.md

-2
This file was deleted.

Diff for: book/01-前言/05-后记.md

-2
This file was deleted.

Diff for: book/01-前言/06-鸣谢.md

-2
This file was deleted.

Diff for: book/01-前言/07-其他.md

-2
This file was deleted.

Diff for: book/02-Introduction/00-README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 介绍
2+
File renamed without changes.
File renamed without changes.

Diff for: book/02-介绍/00-README.md

-2
This file was deleted.

Diff for: images/alipay.PNG

33.9 KB
Loading

Diff for: images/wechat.PNG

41.2 KB
Loading

0 commit comments

Comments
 (0)