1
1
<!DOCTYPE html>
2
2
< html lang ="en ">
3
+
3
4
< head >
4
5
< meta charset ="UTF-8 ">
5
6
< title > JavaGuide</ title >
6
7
< meta http-equiv ="X-UA-Compatible " content ="IE=edge,chrome=1 " />
7
8
< meta name ="description " content ="Description ">
8
- < meta name ="viewport " content ="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 ">
9
+ < meta name ="viewport "
10
+ content ="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0 ">
9
11
< link rel ="stylesheet " href ="//unpkg.com/docsify/lib/themes/vue.css ">
10
12
< link rel ="stylesheet " href ="//unpkg.com/docsify/lib/themes/prism.css ">
11
13
</ head >
14
+
12
15
< body >
13
16
< div id ="app "> </ div >
14
17
< script >
15
18
window . $docsify = {
16
19
name : 'JavaGuide' ,
17
20
repo : 'https://github.com/Snailclimb/JavaGuide' ,
18
- maxLevel : 3 , //最大支持渲染的标题层级
19
- coverpage : true , //封面,_coverpage.md
20
- auto2top : true , //切换页面后是否自动跳转到页面顶部
21
- //ga: 'UA-138586553-1',
22
- //logo: 'https://my-blog-to-use.oss-cn-beijing.aliyuncs.com/2019-3logo-%E9%80%8F%E6%98%8E.png' ,
23
- search : {
24
- //maxAge: 86400000, // 过期时间,单位毫秒,默认一天
21
+ maxLevel : 3 , //最大支持渲染的标题层级
22
+ coverpage : true , //封面,_coverpage.md
23
+ auto2top : true , //切换页面后是否自动跳转到页面顶部
24
+ //ga: 'UA-138586553-1',
25
+ //logo: 'https://my-blog-to-use.oss-cn-beijing.aliyuncs.com/2019-3logo-%E9%80%8F%E6%98%8E.png' ,
26
+ search : {
27
+ //maxAge: 86400000, // 过期时间,单位毫秒,默认一天
25
28
paths : 'auto' ,
26
- placeholder : '搜索' ,
27
- noData : '找不到结果' ,
28
- // 搜索标题的最大程级, 1 - 6
29
+ placeholder : '搜索' ,
30
+ noData : '找不到结果' ,
31
+ // 搜索标题的最大程级, 1 - 6
29
32
depth : 3 ,
30
- } ,
31
-
33
+ } ,
34
+ plugins : [
35
+ EditOnGithubPlugin . create ( 'https://github.com/Snailclimb/JavaGuide/tree/master/docs' )
36
+ ] ,
37
+
32
38
}
33
39
</ script >
34
40
< script src ="//unpkg.com/docsify/lib/docsify.min.js "> </ script >
40
46
<script src="//unpkg.com/docsify" data-ga="UA-138586553-1"></script>
41
47
<script src="//unpkg.com/docsify/lib/plugins/ga.js"></script>
42
48
-->
49
+ <!-- 复制到剪贴板 -->
50
+ < script src ="//unpkg.com/docsify-copy-code "> </ script >
51
+ <!-- docsify-edit-on-github -->
52
+ < script src ="//unpkg.com/docsify-edit-on-github/index.js "> </ script >
43
53
</ body >
44
- </ html >
54
+
55
+ </ html >
0 commit comments