-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
78 lines (70 loc) · 1.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE >
<html>
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>小恐龙公文排版助手 for Word/WPS</title>
<link rel="stylesheet" href="./docute.css" />
</head>
<body>
<div id="docute"></div>
<script src="./docute.js"></script>
<script>
new Docute({
target: '#docute',
detectSystemDarkTheme: true,
darkThemeToggler: true,
layout: 'narrow',
footer: `Power by <a href="http://xkonglong.com">小恐龙工作室</a> 2020-2023 年`,
nav: [
{
title: '首页',
link: '/'
},
{
title: '小恐龙工作室',
link: 'https://xkonglong.com'
}
],
sidebar: [
{
title: '入门指引',
link:'/'
},
{
title: '功能介绍',
link:'/feature'
},
{
title: '高阶功能',
link:'/vba'
},
{
title: '常见问题',
link:'/faq'
},
{
title: '更新日志',
link:'/update'
},
// An external link
{
title: '小恐龙工作室',
link: 'https://xkonglong.com'
},
{
title: 'QQ频道-公文排版助手',
link:'https://pd.qq.com/s/exu99qgjm'
},
{
title: 'Github VBA讨论组',
link: 'https://github.com/xkonglong/gw/discussions'
}
]
})
</script>
</body>
</html>