Skip to content

Commit cbfb2c5

Browse files
committed
[feat]文章名规范&在线阅读完善样式美化
1 parent 25b0f2b commit cbfb2c5

17 files changed

+10
-12
lines changed

docs/.vuepress/config.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module.exports = config({
3535
items: [
3636
{ text: "Java书单精选", icon: "book", link: "https://gitee.com/SnailClimb/awesome-cs" },
3737
{ text: "Java学习路线", icon: "luxianchaxun", link: "https://zhuanlan.zhihu.com/p/379041500" },
38-
{ text: "Java开源项目精选", icon: "luxianchaxun", link: "https://gitee.com/SnailClimb/awesome-java" }
38+
{ text: "Java开源项目精选", icon: "git", link: "https://gitee.com/SnailClimb/awesome-java" }
3939
],
4040
},
4141
{ text: "IDEA指南", icon: "intellijidea", link: "/idea-tutorial/", },
@@ -74,7 +74,7 @@ module.exports = config({
7474
},
7575
{
7676
title: "Docker",
77-
icon: "git",
77+
icon: "docker1",
7878
prefix: "docker/",
7979
collapsable: false,
8080
children: ["docker", "docker从入门到实战"]
@@ -101,7 +101,7 @@ module.exports = config({
101101
children: [
102102
"shortcut-key", "idea-themes", "improve-code", "interface-beautification",
103103
"camel-case", "code-glance", "code-statistic",
104-
"git-commit-template", "gson-format", "dea-features-trainer", "jclasslib",
104+
"git-commit-template", "gson-format", "idea-features-trainer", "jclasslib",
105105
"maven-helper", "rest-devlop", "save-actions", "sequence-diagram", "translation",
106106
"others"
107107
]
@@ -123,7 +123,7 @@ module.exports = config({
123123
{
124124
title: "容器", prefix: "collection/",
125125
children: [
126-
"java集合框架基础知识&面试题总结", "java集合使用注意事项总结",
126+
"java集合框架基础知识&面试题总结", "java集合使用注意事项",
127127
{
128128
title: "源码分析",
129129
children: ["arraylist-source-code", "hashmap-source-code", "concurrent-hash-map-source-code"],
@@ -142,15 +142,15 @@ module.exports = config({
142142
},
143143
{
144144
title: "JVM", prefix: "jvm/",
145-
children: ["内存区域", "jvm垃圾回收", "类文件结构", "类加载过程", "类加载器", "jvm参数指南", "[加餐]大白话带你认识jvm"],
145+
children: ["memory-area", "jvm-garbage-collection", "class-file-structure", "class-loading-process", "classloader", "jvm-parameters-intro", "jvm-intro", "jdk-monitoring-and-troubleshooting-tools"],
146146
},
147147
{
148148
title: "新特性", prefix: "new-features/",
149-
children: ["java8-common-new-features", "java8新特性总结", "java新特性总结"],
149+
children: ["java8-common-new-features", "java8-tutorial-translate", "java新特性总结"],
150150
},
151151
{
152152
title: "小技巧", prefix: "tips/",
153-
children: ["locate-performance-problems/手把手教你定位常见Java性能问题", "jad反编译tricks"],
153+
children: ["locate-performance-problems/手把手教你定位常见Java性能问题", "jad"],
154154
},
155155
],
156156
},
@@ -166,7 +166,7 @@ module.exports = config({
166166
{
167167
title: "操作系统", prefix: "operating-system/", icon: "caozuoxitong",
168168
children: [
169-
"basis", "linux", "shell"
169+
"操作系统常见面试题&知识点总结", "linux-intro", "shell-intro"
170170
],
171171
},
172172
{
@@ -202,7 +202,7 @@ module.exports = config({
202202
},
203203
{
204204
title: "Redis", prefix: "redis/",
205-
children: ["redis-all", "3-commonly-used-cache-read-and-write-strategies"],
205+
children: ["redis知识点&面试题总结", "3-commonly-used-cache-read-and-write-strategies"],
206206
},
207207
],
208208
},

docs/.vuepress/styles/index.styl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// import icon
2-
@import '//at.alicdn.com/t/font_2922463_xcm2s697wt.css'
2+
@import '//at.alicdn.com/t/font_2922463_74fu8o5xg3.css'

docs/database/Redis/redis-all.md renamed to docs/database/redis/redis知识点&面试题总结.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ tag:
55
- Redis
66
---
77

8-
98
### 简单介绍一下 Redis 呗!
109

1110
简单来说 **Redis 就是一个使用 C 语言开发的数据库**,不过与传统数据库不同的是 **Redis 的数据是存在内存中的** ,也就是它是内存数据库,所以读写速度非常快,因此 Redis 被广泛应用于缓存方向。
File renamed without changes.

docs/java/jvm/JVM垃圾回收.md renamed to docs/java/jvm/jvm-garbage-collection.md

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ tag:
44
- JVM
55
---
66

7-
87
# JVM 垃圾回收详解
98

109
## 写在前面
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)