-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
102 lines (92 loc) · 2.28 KB
/
mkdocs.yml
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
# Project information
site_name: 'Copilot-3000Q'
site_description: 'Github Copilot 3000 Questions'
site_author: 'inRemark'
site_url: 'http://inremark.com'
edit_uri: 'https://github.com/inRemark/Copilot-3000Q.git'
# Repository
repo_name: 'Copilot-3000Q'
repo_url: 'https://github.com/inRemark/Copilot-3000Q.git'
# Copyright
copyright: 'Copyright © 2024 InRemark'
# Plugins
plugins:
- search
# - alternate-link
- i18n:
docs_structure: folder
languages:
- locale: zh
default: true
name: 简体中文
build: true
- locale: en
name: English
build: true
# Extensions
markdown_extensions:
- mdx_truly_sane_lists
- md_in_html
- pymdownx.highlight:
use_pygments: true
- pymdownx.superfences
- pymdownx.keys
# Configuration
theme:
name: 'material'
language: zh
logo: 'assets/images/logo.svg'
favicon: 'assets/images/favicon.png'
font: false
features:
- navigation.top
- content.action.edit
- content.code.copy
- search.highlight
- search.suggest
palette:
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/lightbulb
name: Switch to dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
accent: red
primary: red
toggle:
icon: material/lightbulb-outline
name: Switch to light mode
# Custom
extra:
social:
- icon: fontawesome/brands/github
link: 'https://github.com/inRemark/Copilot-3000Q'
- icon: fontawesome/brands/twitter
link: https://twitter.com/youdayly
# alternate:
# - name: English
# link: /en/
# lang: en
# - name: 简体中文
# link: /zh/
# lang: zh
extra_css:
- 'stylesheets/extra.css'
# Google Analytics
# google_analytics:
# - 'UA-XXXXX-X'
# - 'auto'
nav:
- Home: index.md
- Java:
- Java工具命令: java/java-command.md
- Java Optional: java/java-optional.md
- Logback level configuration in Springboot: logback/logback.md
- Nginx:
- Nginx domain redirect: nginx/nginx-domain-redirect.md
- Nginx and browser caching strategy: nginx/nginx-browser-caching-strategy.md
- About:
- About: about/about.md
- Changelogs: about/changelogs.md
- FAQ: about/FAQ.md