-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
71 lines (64 loc) · 1.61 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
site_name: vivid documentation
site_description: docs of a toy web framework made by me for learning purpose.
repo_url: https://github.com/NaviTheCoderboi/vivid
site_author: NaviTheCoderboi
copyright: Copyright NaviTheCoderboi ( 2024 - present )
site_url: https://NaviTheCoderboi.github.io/vivid
extra:
social:
- icon: material/github
url: https://github.com/NaviTheCoderboi/vivid
version: 1.0.0-alpha2
theme:
name: "material"
logo: assets/vivid-logo.png
favicon: assets/vivid-logo.png
features:
- navigation.tracking
- navigation.instant
- navigation.tabs
- content.code.annotate
- navigation.instant
- toc.follow
- content.code.copy
- navigation.path
palette:
- scheme: light
toggle:
icon: material/weather-sunny
name: Light Mode
- scheme: slate
toggle:
icon: material/weather-night
name: Dark Mode
plugins:
- mkdocstrings:
handlers:
python:
options:
docstring_style: numpy
merge_init_into_class: false
inherited_members: true
import:
- https://docs.python.org/3.11/objects.inv
- search
markdown_extensions:
- admonition
- attr_list
- md_in_html
- pymdownx.highlight:
anchor_linenums: true
- pymdownx.inlinehilite
- pymdownx.snippets
- pymdownx.superfences
- pymdownx.details
- pymdownx.superfences
nav:
- Home: index.md
- Api Reference:
- App: api_reference/app.md
- Http:
- SSR: api_reference/http/SSR.md
- SSG: api_reference/http/SSG.md
- Guides:
- Basic: guides/basic.md