-
-
Notifications
You must be signed in to change notification settings - Fork 300
Expand file tree
/
Copy pathmkdocs.yml
More file actions
87 lines (83 loc) · 2.28 KB
/
mkdocs.yml
File metadata and controls
87 lines (83 loc) · 2.28 KB
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
# Site configuration
site_name: SpoofDPI
site_description: 'Lightweight and fast DPI circumvention tool.'
site_author: 'xvzc'
copyright: Copyright © 2025 xvzc. All rights reserved.
repo_url: https://github.com/xvzc/SpoofDPI
repo_name: 'xvzc/SpoofDPI'
extra_css:
- style.css
# Theme configuration
theme:
name: material
logo: static/logo.png
favicon: static/favicon.ico
language: en
custom_dir: docs/overrides
icon:
repo: fontawesome/brands/github
palette:
- media: '(prefers-color-scheme: light)'
scheme: default
primary: black
accent: indigo
toggle:
icon: material/weather-night
name: Switch to dark mode
- media: '(prefers-color-scheme: dark)'
scheme: slate
primary: black
accent: indigo
toggle:
icon: material/weather-sunny
name: Switch to light mode
features:
- toc.follow
- navigation.expand
- navigation.indexes
# - navigation.sections
- navigation.tabs
- navigation.top
- navigation.tracking
- search.suggest
- search.highlight
- content.code.annotate
- content.code.copy
- content.code.collapse
# Navigation menu
nav:
- 'Getting Started':
- 'Introduction': getting-started/introduction.md
- 'Install': getting-started/install.md
- 'Quick Start': getting-started/quick-start.md
- 'User Guide':
- 'Overview': user-guide/overview.md
- 'Options':
- 'General': user-guide/general.md
- 'Server': user-guide/server.md
- 'DNS': user-guide/dns.md
- 'HTTPS': user-guide/https.md
- 'Policy': user-guide/policy.md
- 'Configuration Examples': user-guide/examples.md
# - 'Geographical Recipes':
# - 'South Korea': user-guide/configuration-recipes/south-korea.md
- 'Developer Guide':
- 'Commit Messages': developer-guide/commit-messages.md
- 'Code Quality': developer-guide/code-quality.md
- 'Build and Run': developer-guide/build-and-run.md
- 'Testing': developer-guide/testing.md
- 'Documentation': developer-guide/documentation.md
# Extensions
markdown_extensions:
- pymdownx.highlight:
anchor_linenums: true
- toc:
toc_depth: 2
permalink: true
- attr_list
- md_in_html
- pymdownx.blocks.caption
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- admonition