-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmkdocs.yml
More file actions
53 lines (46 loc) · 1.27 KB
/
mkdocs.yml
File metadata and controls
53 lines (46 loc) · 1.27 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
site_name: Graphic Server Protocol
site_description: "⚡ GSP: A high-performance graphics server protocol for efficient rendering and visualization."
site_author: GSP Team
site_dir: mkdocs_build
docs_dir: mkdocs_source
theme:
name: material # built-in theme
markdown_extensions:
- toc:
permalink: true
- tables
- fenced_code
plugins:
- search
- mkdocstrings:
handlers:
python:
paths: [src]
options:
docstring_style: google
show_root_heading: true
show_source: true
show_signature_annotations: true
annotations_path: full
napoleon_google_docstring: true
napoleon_numpy_docstring: true
# Social media links in the footer
extra:
social:
- icon: fontawesome/brands/github
link: https://github.com/vispy/GSP_API
# Github repository information
repo_url: https://github.com/vispy/GSP_API
repo_name: GSP_API
# Navigation structure
nav:
- Home: index.md
- About: about.md
- API Reference:
- GSP: api/gsp.md
- GSP Network: api/gsp_network.md
- GSP Pydantic: api/gsp_pydantic.md
- GSP Matplotlib: api/gsp_matplotlib.md
- GSP Datoviz: api/gsp_datoviz.md
- GSP Extra: api/gsp_extra.md
- Vispy 2: api/vispy_2.md