-
Notifications
You must be signed in to change notification settings - Fork 0
/
vuepress.theme.ts
112 lines (111 loc) · 2.43 KB
/
vuepress.theme.ts
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
import { plumeTheme } from 'vuepress-theme-plume'
import navbar from './vuepress.navbar'
import notes from './vuepress.notes'
import sidebar from './vuepress.sidebar'
export default plumeTheme({
profile: {
name: '红枫',
description:
'RA3 mod开发者,前RA2 mod开发者,业余建模爱好者,博客拥有者(确信)',
avatar: '/MapleLeaf.webp',
location: 'Somewhere on the internet',
organization: 'Shimakaze.Org',
circle: true,
layout: 'right',
},
social: [
{
icon: 'bilibili',
link: 'https://space.bilibili.com/172514568',
},
{
icon: 'github',
link: 'https://github.com/HongFengRM',
},
],
footer: {
copyright: 'Copyright © 2024-present HongFengRM 保留一切权利',
},
blog: {
postList: false,
link: '/',
tagsLink: '/tags/',
categoriesLink: '/categories/',
archivesLink: '/archives/',
},
contributors: {
avatar: true,
mode: 'inline',
info: [
{
username: 'frg2089',
alias: ['舰队的偶像-岛风酱!', '舰队的偶像-岛风酱!'],
name: '舰队的偶像-岛风酱!',
},
{
username: 'HongFengRM',
name: '红枫',
},
],
},
copyright: 'CC-BY-NC-SA-4.0',
docsBranch: 'master',
docsDir: 'docs',
docsRepo: 'HongFengRM/HongFengRM.github.io',
home: '/',
hostname: 'rm.shimakaze.org',
logo: '/favicon.ico',
navbar,
notes,
plugins: {
comment: {
provider: 'Giscus',
comment: true,
repo: 'HongFengRM/HongFengRM.github.io',
repoId: 'R_kgDONU6osg',
category: 'Comments',
categoryId: 'DIC_kwDONU6oss4Cko0i',
mapping: 'pathname',
strict: true,
reactionsEnabled: true,
inputPosition: 'top',
lazyLoading: true,
},
git: true,
markdownEnhance: {
gfm: true,
align: true,
attrs: true,
sup: true,
sub: true,
footnote: true,
mark: true,
tasklist: true,
component: true,
chart: false,
echarts: false,
mermaid: true,
spoiler: true,
markmap: true,
},
markdownImage: {
figure: true,
lazyload: true,
mark: true,
size: true,
},
shiki: {
theme: {
light: 'light-plus',
dark: 'dark-plus',
},
lineNumbers: true,
collapsedLines: true,
whitespace: true,
},
readingTime: {
wordPerMinute: 300,
},
},
sidebar,
})