Skip to content

Commit b1f22a0

Browse files
authored
Merge pull request #2198 from Mister-Hope/main
更新依赖、格式化文档以及部分细节修复
2 parents 4ca9af2 + 1143429 commit b1f22a0

File tree

214 files changed

+4754
-7567
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

214 files changed

+4754
-7567
lines changed

docs/.vuepress/theme.ts

+11-7
Original file line numberDiff line numberDiff line change
@@ -51,37 +51,41 @@ export default hopeTheme({
5151

5252
plugins: {
5353
blog: true,
54+
5455
copyright: {
5556
author: "JavaGuide(javaguide.cn)",
5657
license: "MIT",
5758
triggerLength: 100,
5859
maxLength: 700,
5960
canonical: "https://javaguide.cn/",
60-
global:true
61+
global: true,
62+
},
63+
64+
feed: {
65+
atom: true,
66+
json: true,
67+
rss: true,
6168
},
69+
6270
mdEnhance: {
6371
align: true,
6472
codetabs: true,
6573
container: true,
6674
figure: true,
75+
gfm: true,
6776
include: {
6877
resolvePath: (file, cwd) => {
6978
if (file.startsWith("@"))
7079
return path.resolve(
7180
__dirname,
7281
"../snippets",
73-
file.replace("@", "./")
82+
file.replace("@", "./"),
7483
);
7584

7685
return path.resolve(cwd, file);
7786
},
7887
},
7988
tasklist: true,
8089
},
81-
feed: {
82-
atom: true,
83-
json: true,
84-
rss: true,
85-
},
8690
},
8791
});

docs/about-the-author/zhishixingqiu-two-years.md

+1-1

docs/books/java.md

+2-2

docs/cs-basics/algorithms/10-classical-sorting-algorithms.md

+42-42

docs/cs-basics/algorithms/linkedlist-algorithm-problems.md

+1-1

docs/cs-basics/algorithms/string-algorithm-problems.md

+1-1

docs/cs-basics/algorithms/the-sword-refers-to-offer.md

+1-1

docs/cs-basics/data-structure/bloom-filter.md

+1-1

docs/cs-basics/data-structure/graph.md

+1-1

docs/cs-basics/data-structure/heap.md

+1-1

docs/cs-basics/data-structure/linear-data-structure.md

+1-1

docs/cs-basics/data-structure/red-black-tree.md

+1-1

docs/cs-basics/data-structure/tree.md

+1-1

docs/cs-basics/network/application-layer-protocol.md

+1-1

docs/cs-basics/network/arp.md

+1-1

docs/cs-basics/network/dns.md

+1-1

docs/cs-basics/network/http-status-codes.md

+1-1

docs/cs-basics/network/http-vs-https.md

+1-1

docs/cs-basics/network/http1.0-vs-http1.1.md

+1-1

docs/cs-basics/network/nat.md

+1-1

docs/cs-basics/network/network-attack-means.md

+1-1

docs/cs-basics/network/osi-and-tcp-ip-model.md

+1-1

docs/cs-basics/network/other-network-questions.md

+1-1

docs/cs-basics/network/other-network-questions2.md

+1-1

docs/cs-basics/network/tcp-connection-and-disconnection.md

+1-1

docs/cs-basics/network/tcp-reliability-guarantee.md

+1-1

docs/cs-basics/operating-system/linux-intro.md

+1-1

docs/cs-basics/operating-system/operating-system-basic-questions-01.md

+1-1

docs/cs-basics/operating-system/operating-system-basic-questions-02.md

+1-1

docs/cs-basics/operating-system/shell-intro.md

+1-1

docs/database/character-set.md

+1-1

docs/database/elasticsearch/elasticsearch-questions-01.md

+1-1

docs/database/mongodb/mongodb-questions-01.md

+1-1

docs/database/mongodb/mongodb-questions-02.md

+1-1

docs/database/mysql/a-thousand-lines-of-mysql-study-notes.md

+1-1

docs/database/mysql/how-sql-executed-in-mysql.md

+1-1

docs/database/mysql/innodb-implementation-of-mvcc.md

+1-1

docs/database/mysql/mysql-auto-increment-primary-key-continuous.md

+1-1

docs/database/mysql/mysql-high-performance-optimization-specification-recommendations.md

+4-4

docs/database/mysql/mysql-index.md

+1-1

docs/database/mysql/mysql-logs.md

+1-1

docs/database/mysql/mysql-query-cache.md

+1-1

docs/database/mysql/mysql-questions-01.md

+1-1

0 commit comments

Comments
 (0)